document.addEventListener( 'DOMContentLoaded', function() { // Prevent aggressive iframe caching in Firefox var statsIframe = document.getElementById( 'stats-iframe' ); if ( statsIframe ) { statsIframe.contentWindow.location.href = statsIframe.src; } } );var _litespeed_meta; var _litespeed_shell_interval = 3; // seconds var _litespeed_shell_interval_range = [3, 60]; var _litespeed_shell_handle; var _litespeed_shell_display_handle; var _litespeed_crawler_url; var _litespeed_dots; (function ($) { 'use strict'; /** * All of the code for your public-facing JavaScript source * should reside in this file. * * Note: It has been assumed you will write jQuery code here, so the * $ function reference has been prepared for usage within the scope * of this function. * * This enables you to define handlers, for when the DOM is ready: * * $(function() { * * }) ; * * When the window is loaded: * * $( window ).load(function() { * * }) ; * * ...and/or other possibilities. * * Ideally, it is not considered best practise to attach more than a * single DOM-ready or window-load handler for a particular page. * Although scripts in the WordPress core, Plugins and Themes may be * practising this, we should strive to set a better example in our own work. */ jQuery(document).ready(function () { /************** Common LiteSpeed JS **************/ // Link confirm $('[data-litespeed-cfm]').on('click', function (event) { if (confirm($.trim($(this).data('litespeed-cfm')).replace(/\\n/g, '\n'))) { return true; } event.preventDefault(); event.stopImmediatePropagation(); return false; }); /************** LSWCP JS ****************/ // page tab switch functionality (function () { var hash = window.location.hash.substr(1); var $tabs = $('[data-litespeed-tab]'); var $subtabs = $('[data-litespeed-subtab]'); // Handle tab and subtab events var tab_action = function ($elems, type) { type = litespeed_tab_type(type); var data = 'litespeed-' + type; $elems.on('click', function (_event) { litespeed_display_tab($(this).data(data), type); document.cookie = 'litespeed_' + type + '=' + $(this).data(data); $(this).blur(); }); }; tab_action($tabs); tab_action($subtabs, 'subtab'); if (!$tabs.length > 0) { // No tabs exist return; } // Find hash in tabs and subtabs var $hash_tab = $tabs.filter('[data-litespeed-tab="' + hash + '"]:first'); var $hash_subtab = $subtabs.filter('[data-litespeed-subtab="' + hash + '"]:first'); // Find tab name var $subtab; var $tab; var tab_name; if ($hash_subtab.length > 0) { // Hash is a subtab $tab = $hash_subtab.closest('[data-litespeed-layout]'); if ($tab.length > 0) { $subtab = $hash_subtab; tab_name = $tab.data('litespeed-layout'); } } if (typeof $tab === 'undefined' || $tab.length < 1) { // Maybe hash is a tab $tab = $hash_tab; if ($tab.length < 1) { // Maybe tab cookie exists $tab = litespeed_tab_cookie($tabs); if ($tab.length < 1) { // Use the first tab by default $tab = $tabs.first(); } } if (typeof tab_name === 'undefined') { tab_name = $tab.data('litespeed-tab'); } } // Always display a tab litespeed_display_tab(tab_name); // Find subtab name if (typeof $subtab === 'undefined' || $subtab.length < 1) { $subtab = litespeed_tab_cookie($subtabs, 'subtab'); } if ($subtab.length > 0) { var subtab_name = $subtab.data('litespeed-subtab'); // Display a subtab litespeed_display_tab(subtab_name, 'subtab'); } })(); // Manage page -> purge by $('[name=purgeby]').on('change', function (event) { $('[data-purgeby]').hide(); $('[data-purgeby=' + this.value + ']').show(); }); /*************** crawler ******************/ $('#litespeed-crawl-url-btn').on('click', function () { if (!$(this).data('url')) { return false; } $('.litespeed-shell').removeClass('litespeed-hide'); _litespeed_dots = window.setInterval(_litespeed_loading_dots, 300); _litespeed_crawler_url = $(this).data('url'); litespeed_fetch_meta(); $(this).hide(); }); $('#litespeed_manual_trigger').on('click', function (event) { $('#litespeed-loading-dot').before('
  • Manually Started
  • '); _litespeed_shell_interval = _litespeed_shell_interval_range[0]; litespeed_fetch_meta(); }); /******************** Clear whm msg ********************/ $(document).on('click', '.lscwp-whm-notice .notice-dismiss', function () { $.get(litespeed_data.ajax_url_dismiss_whm); }); /******************** Clear rule conflict msg ********************/ $(document).on('click', '.lscwp-notice-ruleconflict .notice-dismiss', function () { $.get(litespeed_data.ajax_url_dismiss_ruleconflict); }); /** Accesskey **/ $('[litespeed-accesskey]').map(function () { var thiskey = $(this).attr('litespeed-accesskey'); $(this).attr('title', 'Shortcut : ' + thiskey.toLocaleUpperCase()); var that = this; $(document).on('keydown', function (e) { if ($(':input:focus').length > 0) return; if (event.metaKey) return; if (event.ctrlKey) return; if (event.altKey) return; if (event.shiftKey) return; if (litespeed_keycode(thiskey.charCodeAt(0))) $(that)[0].click(); }); }); /** Lets copy one more submit button **/ if ($('input[name="LSCWP_CTRL"]').length > 0) { var btn = $('input.litespeed-duplicate-float'); btn.clone().addClass('litespeed-float-submit').removeAttr('id').insertAfter(btn); } if ($('input[id="LSCWP_NONCE"]').length > 0) { $('input[id="LSCWP_NONCE"]').removeAttr('id'); } /** Promo banner **/ $('#litespeed-promo-done').on('click', function (event) { $('.litespeed-banner-promo-full').slideUp(); $.get(litespeed_data.ajax_url_promo + '&done=1'); }); $('#litespeed-promo-later').on('click', function (event) { $('.litespeed-banner-promo-full').slideUp(); $.get(litespeed_data.ajax_url_promo); }); /** * Human readable time conversation * @since 3.0 */ if ($('[data-litespeed-readable]').length > 0) { $('[data-litespeed-readable]').each(function (index, el) { var that = this; var $input = $(this).siblings('input[type="text"]'); var txt = litespeed_readable_time($input.val()); $(that).html(txt ? '= ' + txt : ''); $input.on('keyup', function (event) { var txt = litespeed_readable_time($(this).val()); $(that).html(txt ? '= ' + txt : ''); }); }); } /** * Get server IP * @since 3.0 */ $('#litespeed_get_ip').on('click', function (e) { $.ajax({ url: litespeed_data.ajax_url_getIP, dataType: 'json', beforeSend: function (xhr) { xhr.setRequestHeader('X-WP-Nonce', litespeed_data.nonce); }, success: function (data) { console.log('[litespeed] get server IP response: ' + data); $('#litespeed_server_ip').html(data); }, }); }); /** * Freeze or melt a specific crawler * @since 4.3 */ if ($('[data-crawler-list] [data-litespeed_toggle_id]').length > 0) { $('[data-crawler-list] [data-litespeed_toggle_id]').on('click', function (e) { var crawler_id = $(this).attr('data-litespeed_toggle_id'); var crawler_id = Number(crawler_id.split('-').pop()); var that = this; $.ajax({ url: litespeed_data.ajax_url_crawler_switch, dataType: 'json', method: 'POST', cache: false, data: { crawler_id: crawler_id }, beforeSend: function (xhr) { xhr.setRequestHeader('X-WP-Nonce', litespeed_data.nonce); }, success: function (data) { $(that) .toggleClass('litespeed-toggle-btn-default litespeed-toggleoff', data == 0) .toggleClass('litespeed-toggle-btn-primary', data == 1); console.log('litespeed-crawler-ajax: change Activate option'); }, error: function (xhr, error) { console.log(xhr); console.log(error); console.log('litespeed-crawler-ajax: option failed to save due to some error'); }, }); }); } /** * Click only once */ if ($('[data-litespeed-onlyonce]').length > 0) { $('[data-litespeed-onlyonce]').on('click', function (e) { if ($(this).hasClass('disabled')) { e.preventDefault(); } $(this).addClass('disabled'); }); } }); })(jQuery); /** * Plural handler */ function litespeed_plural($num, $txt) { if ($num > 1) return $num + ' ' + $txt + 's'; return $num + ' ' + $txt; } /** * Convert seconds to readable time */ function litespeed_readable_time(seconds) { if (seconds < 60) { return ''; } var second = Math.floor(seconds % 60); var minute = Math.floor((seconds / 60) % 60); var hour = Math.floor((seconds / 3600) % 24); var day = Math.floor((seconds / 3600 / 24) % 7); var week = Math.floor(seconds / 3600 / 24 / 7); var str = ''; if (week) str += ' ' + litespeed_plural(week, 'week'); if (day) str += ' ' + litespeed_plural(day, 'day'); if (hour) str += ' ' + litespeed_plural(hour, 'hour'); if (minute) str += ' ' + litespeed_plural(minute, 'minute'); if (second) str += ' ' + litespeed_plural(second, 'second'); return str; } /** * Trigger a click event on an element * @since 1.8 */ function litespeed_trigger_click(selector) { jQuery(selector).trigger('click'); } function litespeed_keycode(num) { var num = num || 13; var code = window.event ? event.keyCode : event.which; if (num == code) return true; return false; } /** * Normalize specified tab type * @since 4.7 */ function litespeed_tab_type(type) { return 'subtab' === type ? type : 'tab'; } /** * Sniff cookies for tab and subtab * @since 4.7 */ function litespeed_tab_cookie($elems, type) { type = litespeed_tab_type(type); var re = new RegExp('(?:^|.*;)\\s*litespeed_' + type + '\\s*=\\s*([^;]*).*$|^.*$', 'ms'); var name = document.cookie.replace(re, '$1'); return $elems.filter('[data-litespeed-' + type + '="' + name + '"]:first'); } function litespeed_display_tab(name, type) { type = litespeed_tab_type(type); var $tabs; var $layouts; var classname; var layout_type; if ('subtab' === type) { classname = 'focus'; layout_type = 'sublayout'; $tabs = jQuery('[data-litespeed-subtab="' + name + '"]') .siblings('[data-litespeed-subtab]') .addBack(); $layouts = jQuery('[data-litespeed-sublayout="' + name + '"]') .siblings('[data-litespeed-sublayout]') .addBack(); } else { // Maybe handle subtabs var $subtabs = jQuery('[data-litespeed-layout="' + name + '"] [data-litespeed-subtab]'); if ($subtabs.length > 0) { // Find subtab name var $subtab = litespeed_tab_cookie($subtabs, 'subtab'); if ($subtab.length < 1) { $subtab = jQuery('[data-litespeed-layout="' + name + '"] [data-litespeed-subtab]:first'); } if ($subtab.length > 0) { var subtab_name = $subtab.data('litespeed-subtab'); // Display a subtab litespeed_display_tab(subtab_name, 'subtab'); } } classname = 'nav-tab-active'; layout_type = 'layout'; $tabs = jQuery('[data-litespeed-tab]'); $layouts = jQuery('[data-litespeed-layout]'); } $tabs.removeClass(classname); $tabs.filter('[data-litespeed-' + type + '="' + name + '"]').addClass(classname); $layouts.hide(); $layouts.filter('[data-litespeed-' + layout_type + '="' + name + '"]').show(); } function lscwpEsiEnabled(the_checkbox, esi_ids) { var rdonly = the_checkbox.checked ? false : true; var len = esi_ids.length; for (var i = 0; i < len; i++) { var node_id = 'saved_' + esi_ids[i].getAttribute('id'); var node_val = esi_ids[i].getAttribute('value'); var prev = document.getElementById(node_id); if (rdonly === false) { esi_ids[i].removeAttribute('disabled'); if (prev) { esi_ids[i].removeChild(prev); } continue; } esi_ids[i].setAttribute('disabled', true); if (prev !== null) { if (esi_ids[i].checked) { prev.setAttribute('value', node_val); } else { esi_ids[i].removeChild(prev); } continue; } else if (esi_ids[i].checked === false) { continue; } var hid = document.createElement('INPUT'); hid.setAttribute('type', 'hidden'); hid.setAttribute('name', esi_ids[i].getAttribute('name')); hid.setAttribute('value', node_val); hid.setAttribute('id', node_id); esi_ids[i].appendChild(hid); } } // Append params to uri function litespeed_append_param(uri, key, val) { var re = new RegExp('([?&])' + key + '=.*?(&|$)', 'i'); var separator = uri.indexOf('?') !== -1 ? '&' : '?'; if (uri.match(re)) { return uri.replace(re, '$1' + key + '=' + val + '$2'); } else { return uri + separator + key + '=' + val; } } function litespeed_pulse() { jQuery('#litespeed-shell-icon').animate( { width: 27, height: 34, opacity: 1, }, 700, function () { jQuery('#litespeed-shell-icon').animate( { width: 23, height: 29, opacity: 0.5, }, 700, ); }, ); } function litespeed_fetch_meta() { window.clearTimeout(_litespeed_shell_handle); jQuery('#litespeed-loading-dot').text(''); jQuery.ajaxSetup({ cache: false }); jQuery.getJSON(_litespeed_crawler_url, function (meta) { litespeed_pulse(); var changed = false; if (meta && 'list_size' in meta) { new_meta = meta.list_size + ' ' + meta.file_time + ' ' + meta.curr_crawler + ' ' + meta.last_pos + ' ' + meta.last_count + ' ' + meta.last_start_time + ' ' + meta.is_running; if (new_meta != _litespeed_meta) { _litespeed_meta = new_meta; changed = true; string = _litespeed_build_meta(meta); jQuery('#litespeed-loading-dot').before(string); // remove first log elements log_length = jQuery('.litespeed-shell-body li').length; if (log_length > 50) { jQuery('.litespeed-shell-body li:lt(' + (log_length - 50) + ')').remove(); } // scroll to end jQuery('.litespeed-shell-body') .stop() .animate( { scrollTop: jQuery('.litespeed-shell-body')[0].scrollHeight, }, 800, ); } // dynamic adjust the interval length _litespeed_adjust_interval(changed); } // display interval counting litespeed_display_interval_reset(); _litespeed_shell_handle = window.setTimeout(_litespeed_dynamic_timeout, _litespeed_shell_interval * 1000); }); } /** * Dynamic adjust interval */ function _litespeed_adjust_interval(changed) { if (changed) { _litespeed_shell_interval -= Math.ceil(_litespeed_shell_interval / 2); } else { _litespeed_shell_interval++; } if (_litespeed_shell_interval < _litespeed_shell_interval_range[0]) { _litespeed_shell_interval = _litespeed_shell_interval_range[0]; } if (_litespeed_shell_interval > _litespeed_shell_interval_range[1]) { _litespeed_shell_interval = _litespeed_shell_interval_range[1]; } } function _litespeed_build_meta(meta) { var string = '
  • ' + litespeed_date(meta.last_update_time) + '     Size: ' + meta.list_size + '     Crawler: #' + (meta.curr_crawler * 1 + 1) + '     Position: ' + (meta.last_pos * 1 + 1) + '     Threads: ' + meta.last_count + '     Status: '; if (meta.is_running) { string += 'crawling, ' + meta.last_status; } else { string += meta.end_reason ? meta.end_reason : '-'; } string += '
  • '; return string; } function _litespeed_dynamic_timeout() { litespeed_fetch_meta(); } function litespeed_display_interval_reset() { window.clearInterval(_litespeed_shell_display_handle); jQuery('.litespeed-shell-header-bar').data('num', _litespeed_shell_interval); _litespeed_shell_display_handle = window.setInterval(_litespeed_display_interval, 1000); jQuery('.litespeed-shell-header-bar') .stop() .animate({ width: '100%' }, 500, function () { jQuery('.litespeed-shell-header-bar').css('width', '0%'); }); } function _litespeed_display_interval() { var num = jQuery('.litespeed-shell-header-bar').data('num'); jQuery('.litespeed-shell-header-bar') .stop() .animate({ width: litespeed_get_percent(num, _litespeed_shell_interval) + '%' }, 1000); if (num > 0) num--; if (num < 0) num = 0; jQuery('.litespeed-shell-header-bar').data('num', num); } function litespeed_get_percent(num1, num2) { num1 = num1 * 1; num2 = num2 * 1; num = (num2 - num1) / num2; return num * 100; } function _litespeed_loading_dots() { jQuery('#litespeed-loading-dot').append('.'); } function litespeed_date(timestamp) { var a = new Date(timestamp * 1000); var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; var year = a.getFullYear(); var month = months[a.getMonth()]; var date = litespeed_add_zero(a.getDate()); var hour = litespeed_add_zero(a.getHours()); var min = litespeed_add_zero(a.getMinutes()); var sec = litespeed_add_zero(a.getSeconds()); var time = date + ' ' + month + ' ' + year + ' ' + hour + ':' + min + ':' + sec; return time; } function litespeed_add_zero(i) { if (i < 10) { i = '0' + i; } return i; } @import '../../../../scss/mixins'; .debugWrapper { margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid #ddd; } .debugInformation { padding: 0 10px 15px; } .debugText { white-space: pre-wrap; word-break: break-all; user-select: all; height: 100px; width: 100%; overflow: auto; } .copy { @include copy; } /*! elementor - v3.10.2 - 29-01-2023 */ .e-con .elementor-empty-view{position:relative;width:100%;height:100%;min-height:var(--min-height,100px)}.e-con .elementor-empty-view .elementor-first-add{width:auto;height:auto;inset:0}.e-con .elementor-widget-placeholder{--size:10px;--margin-start:calc(-1 * var(--size));--margin-end:calc(-2 * var(--size));flex-shrink:0;align-self:stretch;z-index:1;pointer-events:none}.e-con.e-con--row>.e-con-inner>.elementor-widget-placeholder,.e-con.e-con--row>.elementor-widget-placeholder{position:relative;z-index:9999;width:var(--size);-webkit-margin-start:var(--margin-start);margin-inline-start:var(--margin-start);height:auto;min-height:100%;animation-name:dnd-placeholder-widget-vertical;animation-fill-mode:both}.e-con.e-con--row[data-nesting-level]:not([data-nesting-level="0"])>.e-con-inner>.elementor-widget-placeholder,.e-con.e-con--row[data-nesting-level]:not([data-nesting-level="0"])>.elementor-widget-placeholder{-webkit-margin-end:0;margin-inline-end:0;-webkit-margin-start:calc(var(--margin-start) + var(--margin-end));margin-inline-start:calc(var(--margin-start) + var(--margin-end))}.e-con.e-con--row[data-nesting-level]:not([data-nesting-level="0"])>.e-con-inner>:not(.elementor-element)+.elementor-widget-placeholder,.e-con.e-con--row[data-nesting-level]:not([data-nesting-level="0"])>:not(.elementor-element)+.elementor-widget-placeholder{-webkit-margin-end:var(--margin-end);margin-inline-end:var(--margin-end);-webkit-margin-start:var(--margin-start);margin-inline-start:var(--margin-start)}.e-con.e-con--column>.e-con-inner>.elementor-widget-placeholder,.e-con.e-con--column>.elementor-widget-placeholder{height:var(--size);-webkit-margin-before:var(--margin-start);margin-block-start:var(--margin-start);-webkit-margin-after:var(--margin-end);margin-block-end:var(--margin-end);animation-name:dnd-placeholder-widget-horizontal}.e-con.e-con--column>.elementor-widget-placeholder:nth-last-child(2){-webkit-margin-before:calc(2 * var(--margin-start));margin-block-start:calc(2 * var(--margin-start));--margin-end:0}.e-con.e-con--column>.e-con-inner>.elementor-widget-placeholder:last-child{--margin-end:0}.e-con .elementor-sortable-helper{height:84px;width:125px;z-index:-1}.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-setting,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-setting,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-setting{position:relative;background-color:#556068}.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-setting:hover,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-setting:hover,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-setting:hover{background-color:#495157}.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-setting.elementor-editor-element-add,.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-setting.elementor-editor-element-edit+.elementor-editor-element-remove,.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-setting:first-child:before,.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-setting:last-child:after,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-setting.elementor-editor-element-add,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-setting.elementor-editor-element-edit+.elementor-editor-element-remove,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-setting:first-child:before,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-setting:last-child:after,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-setting.elementor-editor-element-add,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-setting.elementor-editor-element-edit+.elementor-editor-element-remove,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-setting:first-child:before,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-setting:last-child:after{display:none}.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-setting:not(.elementor-editor-element-edit),.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-setting:not(.elementor-editor-element-edit),.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-setting:not(.elementor-editor-element-edit){-webkit-margin-start:-25px;margin-inline-start:-25px;z-index:-1;transition:all .3s;will-change:margin-inline-start}.e-con-inner>.e-con>.elementor-element-overlay>.elementor-editor-element-settings:hover>:is(.elementor-editor-element-duplicate,.elementor-editor-element-remove),.e-con>.e-con>.elementor-element-overlay>.elementor-editor-element-settings:hover>:is(.elementor-editor-element-duplicate,.elementor-editor-element-remove),.elementor-widget .e-con>.elementor-element-overlay>.elementor-editor-element-settings:hover>:is(.elementor-editor-element-duplicate,.elementor-editor-element-remove){-webkit-margin-start:0;margin-inline-start:0}.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-settings,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-settings,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-settings{inset:auto;transform:none;inset-inline-start:0;top:0;border-radius:0;border-end-end-radius:3px;height:auto;background-color:#556068}.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-settings:hover,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-settings:hover,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-settings:hover{background-color:#495157}.e-con-inner>.e-con>.elementor-element-overlay .elementor-editor-element-settings i.eicon-handle:before,.e-con>.e-con>.elementor-element-overlay .elementor-editor-element-settings i.eicon-handle:before,.elementor-widget .e-con>.elementor-element-overlay .elementor-editor-element-settings i.eicon-handle:before{content:"\e9b4";font-size:20px;display:block;padding:2px}@keyframes dnd-placeholder-widget-vertical{0%{transform-origin:0 50%;transform:translateX(50%) scaleX(0);opacity:0}to{transform-origin:0 50%;transform:translateX(50%) scaleX(1);opacity:.9}}@keyframes dnd-placeholder-widget-horizontal{0%{transform-origin:50% 0;transform:scaleY(0);opacity:0}to{transform-origin:50% 0;transform:scaleY(1);opacity:.9}}.elementor-control-unit-1{width:27px}.elementor-control-unit-2{width:54px}.elementor-control-unit-3{width:81px}.elementor-control-unit-4{width:108px}.elementor-control-unit-5{max-width:400px;width:52%}.elementor-tags-list{display:none;position:absolute;width:260px;max-height:300px;overflow:auto;padding-bottom:5px;background-color:#fff;border:1px solid #a4afb7;border-radius:3px;z-index:10000}.elementor-tags-list__group-title{color:#495157;font-weight:700;font-size:12px;padding:10px 15px;display:flex;align-items:center}.elementor-tags-list__group-title .eicon-info-circle{padding-right:5px;color:#71d7f7;font-size:14px}.elementor-tags-list__item{font-size:10px;padding:6px 15px;cursor:pointer}.elementor-tags-list__item:before{content:">";font-size:8px;padding-right:5px}.elementor-tags-list__item:hover{background-color:#e6e9ec}.elementor-tags-list__teaser{border-top:2px solid #d5dadf;padding-top:4px;margin-top:4px}.elementor-tags-list__teaser-title{color:#6d7882}.elementor-tags-list__teaser-text{padding:2px 15px 8px;line-height:1.5;font-size:12px}.elementor-tags-list__teaser-link{color:#93003c;text-decoration:underline;font-style:italic;font-weight:700}.elementor-dynamic-cover{display:flex;align-items:center;width:100%;height:27px;box-sizing:border-box}.elementor-dynamic-cover__title{padding:0 8px;flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.elementor-dynamic-cover__remove,.elementor-dynamic-cover__settings{color:#c2cbd2;cursor:pointer;transition:all .3s}.elementor-dynamic-cover__remove:hover,.elementor-dynamic-cover__settings:hover{color:#a4afb7}.elementor-control-type-wysiwyg .elementor-dynamic-cover{margin-top:10px}.elementor-tag-settings-popup{position:absolute;width:260px;background-color:#e6e9ec;box-shadow:1px 1px 10px rgba(0,0,0,.3);z-index:1}.elementor-tag-settings-popup:before{content:"";position:absolute;top:-20px;left:5px;border:10px solid transparent;border-bottom-color:#fff}.elementor-tag-settings-popup .elementor-control-type-section:first-child{margin:0}.elementor-tag-controls-stack-empty{background-color:#fff;padding:10px;font-size:13px;text-align:center}.elementor-control-dynamic-switcher{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;height:27px;cursor:pointer;border:1px solid #d5dadf;border-radius:3px;background:#fff}.elementor-control-dynamic-switcher.e-control-tool{height:20px;border:0}.elementor-control-dynamic-switcher-wrapper{display:flex}.elementor-control-dynamic-switcher .eicon-database{font-size:12px}.elementor-control-dynamic-value .e-global__popover-toggle,.elementor-control-dynamic-value .elementor-control-dynamic-switcher,.elementor-control-dynamic-value .elementor-control-tag-area{display:none}.elementor-panel-box{margin-top:10px;background-color:#fff}.elementor-panel-box-content{padding:20px 20px 10px}.elementor-button{display:inline-block}.elementor-panel-alert{background-color:#fcfcfc;padding:15px;border-left:3px solid transparent;position:relative;font-size:12px;font-weight:300;font-style:italic;line-height:1.5;text-align:left;border-radius:0 3px 3px 0;box-shadow:0 1px 4px 0 rgba(0,0,0,.07)}.elementor-panel-alert a{color:inherit}.elementor-panel-alert.elementor-panel-alert-info{border-color:#71d7f7;background-color:#f3fcff}.elementor-panel-alert.elementor-panel-alert-success{border-color:#39b54a}.elementor-panel-alert.elementor-panel-alert-warning{border-color:#fcb92c}.elementor-panel-alert.elementor-panel-alert-danger{border-color:#d72b3f}.elementor-label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em;text-transform:capitalize}.elementor-label.elementor-label-default{background-color:#a4afb7}.elementor-label.elementor-label-info{background-color:#5bc0de}.elementor-label.elementor-label-success{background-color:#5cb85c}.elementor-label.elementor-label-warning{background-color:#f0ad4e}.elementor-label.elementor-label-danger{background-color:#d9534f}.elementor-control-field-description,.elementor-descriptor{font-size:11px;font-style:italic;line-height:1.4;color:#a4afb7}.elementor-controls-popover{display:none;position:absolute;box-shadow:0 2px 15px rgba(0,0,0,.3);border-radius:3px;left:0;right:0;margin:-4px auto 5px;padding-top:15px;width:90%;z-index:10000;background-color:#fff}.elementor-controls-popover:before{content:"";position:absolute;top:-16px;right:22px;border:8px solid transparent;border-bottom-color:#fff}.elementor-controls-popover div.elementor-control{background-color:transparent}.elementor-controls-popover div.elementor-control:before{content:none}#elementor-controls .pojo-widget-button-collapse{display:none}#elementor-panel-global .elementor-nerd-box .elementor-nerd-box-icon{margin-top:20px}.elementor-control{--control-title-size:12px;background-color:#fff;position:relative;padding:0 20px 15px}.elementor-control a{font-weight:500;text-decoration:none;border-bottom:1px dotted transparent;transition:all .3s ease-in-out}.elementor-control a:hover{border-bottom-color:inherit}.elementor-control a.elementor-responsive-switcher{border-bottom:0}.elementor-control .elementor-control-content{display:flex;flex-direction:column}.elementor-control .elementor-control-title{font-size:var(--control-title-size);line-height:1;margin-right:5px}.elementor-control .elementor-control-spinner{display:flex;align-items:center}.elementor-control.elementor-control-type-divider{padding:0;background-color:transparent}.elementor-control.elementor-control-type-divider .elementor-control-content{border:solid #e6e9ec;border-width:1px 0 0;background-color:#fff;height:15px}.elementor-control.elementor-control-separator-default:not(.elementor-control-type-divider).elementor-control-wp{margin-top:15px}.elementor-control.elementor-control-separator-default:not(.elementor-control-type-divider).elementor-control-wp:before{content:"";height:1px;display:block;margin-bottom:15px;background-color:transparent}.elementor-control.elementor-control-separator-before{padding-top:15px}.elementor-control.elementor-control-separator-before:before{content:"";position:absolute;height:1px;width:100%;top:0;left:0;background-color:#e6e9ec}.elementor-control.elementor-control-separator-after:after{content:"";position:absolute;height:1px;width:100%;bottom:0;left:0;background-color:#e6e9ec}.elementor-control.elementor-control-separator-after+.elementor-control-type-tabs+.elementor-control-separator-default,.elementor-control.elementor-control-separator-after:not(.elementor-hidden-control)+.elementor-control-separator-default{padding-top:15px}.elementor-control.elementor-control-deprecated,.elementor-control.elementor-control-deprecated .elementor-control-field-description{color:#b01b1b}.elementor-control.elementor-control-hidden-label>*>*>.elementor-control-title,.elementor-control.elementor-control-hidden-label>*>.elementor-control-title,.elementor-control.elementor-hidden-control{display:none}.elementor-control.elementor-control-type-heading .elementor-control-title{font-weight:700;margin:0}body:not(.elementor-device-desktop) .elementor-control.elementor-control-responsive-desktop,body:not(.elementor-device-laptop) .elementor-control.elementor-control-responsive-laptop,body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile,body:not(.elementor-device-mobile_extra) .elementor-control.elementor-control-responsive-mobile_extra,body:not(.elementor-device-tablet) .elementor-control.elementor-control-responsive-tablet,body:not(.elementor-device-tablet_extra) .elementor-control.elementor-control-responsive-tablet_extra,body:not(.elementor-device-widescreen) .elementor-control.elementor-control-responsive-widescreen{display:none}.elementor-control.elementor-control-type-select .elementor-control-input-wrapper{position:relative}.elementor-control.elementor-control-type-select .elementor-control-input-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:12px;font-family:inherit;font-weight:inherit;font-style:inherit;text-transform:inherit;letter-spacing:inherit;line-height:inherit;flex-basis:100%;padding-left:5px;padding-right:20px;cursor:pointer}.elementor-control.elementor-control-type-select .elementor-control-input-wrapper select.e-select-placeholder{color:#a4afb7}.elementor-control.elementor-control-type-select .elementor-control-input-wrapper option.e-option-placeholder{display:none}.elementor-control.elementor-control-type-select .elementor-control-input-wrapper:after{font-family:eicons;content:"\e8ad";font-size:12px;position:absolute;top:50%;transform:translateY(-50%);right:5px;pointer-events:none}.elementor-control-custom_attributes_pro .elementor-nerd-box-message,.elementor-control-custom_css_pro .elementor-nerd-box-message{margin-top:5px}.elementor-control.elementor-control-custom_css_title{font-size:12px}.elementor-control.elementor-open .elementor-panel-heading-toggle .eicon:before,.elementor-panel-scheme-item.elementor-open .elementor-panel-heading-toggle .eicon:before{content:"\e92a"}.elementor-control:not(.elementor-open) .elementor-panel-heading-toggle .eicon:before,.elementor-panel-scheme-item:not(.elementor-open) .elementor-panel-heading-toggle .eicon:before{content:"\e90a"}.elementor-panel-heading{display:table;table-layout:fixed;height:40px;padding:0 20px;width:100%;border-bottom:1px solid #e6e9ec;cursor:pointer}.elementor-panel-heading>*{display:table-cell;vertical-align:middle}.elementor-panel-heading-toggle{width:20px;color:#495157}.elementor-panel-heading-title{color:#495157;font-weight:700}.elementor-control-wp{line-height:1.5}.elementor-control-wp p{margin:15px 0}.elementor-control-field{display:flex;align-items:center}.elementor-label-block>.elementor-control-content>.elementor-control-field{flex-wrap:wrap}.elementor-label-block>.elementor-control-content>.elementor-control-field>.elementor-control-input-wrapper{width:100%;max-width:100%;margin-top:10px}.elementor-label-block>.elementor-control-content>.elementor-control-field>.elementor-control-input-wrapper>.elementor-choices label{width:auto;flex:1 1 27px;display:flex;align-items:center;justify-content:center}.elementor-label-block.elementor-control-hidden-label.elementor-label-block>.elementor-control-content>.elementor-control-field>.elementor-control-input-wrapper,.elementor-label-block.elementor-control-hidden-label:not(.elementor-control-dynamic)>.elementor-control-content>.elementor-control-field>.elementor-control-input-wrapper{margin-top:0}.elementor-label-inline>.elementor-control-content>.elementor-control-field>.elementor-control-title{flex-shrink:0;max-width:60%}.elementor-label-inline>.elementor-control-content>.elementor-control-field>.elementor-control-input-wrapper{margin-left:auto}.elementor-control-field-description{margin-top:10px}.elementor-group-control-attachment_alert .elementor-control-field-description{margin-top:0}.elementor-required{color:#b01b1b}.elementor-update-preview{margin:15px 15px 0;display:flex;align-items:center}.elementor-update-preview-button-wrapper{flex-grow:1;text-align:right}.elementor-update-preview-button{padding:8px 15px;text-transform:uppercase}.elementor-control-direction-ltr input,.elementor-control-direction-ltr textarea{direction:ltr}.elementor-control-direction-rtl input,.elementor-control-direction-rtl textarea{direction:rtl}.elementor-control-responsive-switchers{--selected-option:0;--pointer-position:var(--selected-option);position:relative;width:2.5em;height:2.5em;margin:calc(-2.5em + var(--control-title-size)) 0;margin-right:5px}.elementor-control-responsive-switchers__holder{position:absolute;width:100%;top:0;background-color:#fff;border-radius:3px;transition:.15s;border:1px solid transparent}.elementor-control-responsive-switchers.elementor-responsive-switchers-open{z-index:11000}.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher{height:2.5em;transform:scale(1);opacity:1}.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-responsive-switcher:hover{color:#71d7f7}.elementor-control-responsive-switchers.elementor-responsive-switchers-open .elementor-control-responsive-switchers__holder{box-shadow:0 0 3px rgba(0,0,0,.2)}.elementor-responsive-switcher{display:flex;align-items:center;justify-content:center;position:relative;z-index:2;cursor:pointer;height:0;transform:scale(0);opacity:0;transition:.15s;font-size:12px}a.elementor-responsive-switcher{color:#a4afb7}a.elementor-responsive-switcher:hover{color:#71d7f7}.elementor-device-widescreen .elementor-responsive-switcher.elementor-responsive-switcher-widescreen{height:2.5em;transform:scale(1);opacity:1}.elementor-device-widescreen .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-widescreen{color:#71d7f7}.elementor-device-desktop .elementor-responsive-switcher.elementor-responsive-switcher-desktop{height:2.5em;transform:scale(1);opacity:1}.elementor-device-desktop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-desktop{color:#71d7f7}.elementor-device-laptop .elementor-responsive-switcher.elementor-responsive-switcher-laptop{height:2.5em;transform:scale(1);opacity:1}.elementor-device-laptop .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-laptop{color:#71d7f7}.elementor-device-tablet_extra .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra{height:2.5em;transform:scale(1);opacity:1}.elementor-device-tablet_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet_extra{color:#71d7f7}.elementor-device-tablet .elementor-responsive-switcher.elementor-responsive-switcher-tablet{height:2.5em;transform:scale(1);opacity:1}.elementor-device-tablet .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-tablet{color:#71d7f7}.elementor-device-mobile_extra .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra{height:2.5em;transform:scale(1);opacity:1}.elementor-device-mobile_extra .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile_extra{color:#71d7f7}.elementor-device-mobile .elementor-responsive-switcher.elementor-responsive-switcher-mobile{height:2.5em;transform:scale(1);opacity:1}.elementor-device-mobile .elementor-responsive-switchers-open:not(:hover) .elementor-responsive-switcher.elementor-responsive-switcher-mobile{color:#71d7f7}.e-units-wrapper{position:relative;margin-left:auto}.e-units-wrapper .e-units-switcher{color:#6d7882;cursor:pointer;text-transform:uppercase;font-size:9px;padding:.5em;margin:-.5em 0;transition:all .15s ease-in-out}.e-units-wrapper .e-units-switcher:hover{color:#71d7f7;background-color:#f1f3f5;border-radius:3px}.e-units-wrapper .e-units-switcher:not([data-selected=custom]) i.eicon-edit,.e-units-wrapper .e-units-switcher[data-selected=custom] span{display:none}.e-units-wrapper .e-units-switcher i.eicon-angle-right{transform:rotate(90deg)}.e-units-choices input{display:none}.e-units-choices input:checked+label{color:#71d7f7}.e-units-choices label{cursor:pointer;display:block}.e-units-choices{display:none;overflow:hidden;max-height:0;position:absolute;top:-.8em;left:-.5em;width:2.5em;text-align:center;background-color:#fff;border-radius:3px;border:1px solid transparent;box-shadow:0 0 3px rgba(0,0,0,.2);animation-timing-function:linear;animation-delay:0s;animation-fill-mode:forwards;z-index:11000}.e-units-choices .elementor-units-choices-label{display:flex;align-items:center;height:3em;justify-content:center;text-transform:uppercase;font-size:9px;transition:.15s}.e-units-choices .elementor-units-choices-label:hover{color:#71d7f7}.e-units-choices .elementor-units-choices-label:not([data-choose=custom]) i,.e-units-choices .elementor-units-choices-label[data-choose=custom] span{display:none}.e-units-choices.e-units-choices-open{display:block;animation-duration:1s;animation-name:e-units-choices-open}.e-units-custom input{font-family:monospace;font-size:.85em}@keyframes e-units-choices-open{0%{max-height:0}to{max-height:100vh}}.elementor-control-type-button .elementor-control-input-wrapper{text-align:right}.elementor-control-type-button .elementor-button{width:auto;height:26px}.elementor-control-type-choose.elementor-label-block .elementor-choices{width:100%}.elementor-choices{display:flex;height:27px;line-height:27px;text-align:center;border-spacing:1px;border-radius:3px;overflow:hidden}.elementor-choices .elementor-choices-label{border:1px solid #d5dadf;border-right:none;font-size:12px;transition:all .5s;cursor:pointer;overflow:hidden}.elementor-choices .elementor-choices-label:nth-child(2){border-top-left-radius:3px;border-bottom-left-radius:3px}.elementor-choices .elementor-choices-label:last-child{border-right:1px solid #d5dadf;border-top-right-radius:3px;border-bottom-right-radius:3px}.elementor-choices input{display:none}.elementor-choices input.e-choose-placeholder+.elementor-choices-label{color:#fff;background-color:#c2cbd2;border-color:#c2cbd2}.elementor-choices input:checked+.elementor-choices-label{color:#fff;background-color:#a4afb7;border-color:#a4afb7}.elementor-label-inline .elementor-choices{justify-content:flex-end}.rtl .elementor-control-type-choose[class*=elementor-control-align] .elementor-choices,.rtl .elementor-control-type-choose[class*=elementor-control-position] .elementor-choices,.rtl .elementor-control-type-choose[class*=elementor-control-text_align] .elementor-choices{flex-direction:row-reverse}.rtl .elementor-control-type-choose[class*=elementor-control-align] .elementor-choices .elementor-choices-label:nth-child(2),.rtl .elementor-control-type-choose[class*=elementor-control-position] .elementor-choices .elementor-choices-label:nth-child(2),.rtl .elementor-control-type-choose[class*=elementor-control-text_align] .elementor-choices .elementor-choices-label:nth-child(2){border-right:1px solid #d5dadf;border-radius:3px 0 0 3px}.rtl .elementor-control-type-choose[class*=elementor-control-align] .elementor-choices .elementor-choices-label:last-child,.rtl .elementor-control-type-choose[class*=elementor-control-position] .elementor-choices .elementor-choices-label:last-child,.rtl .elementor-control-type-choose[class*=elementor-control-text_align] .elementor-choices .elementor-choices-label:last-child{border-right:none;border-radius:0 3px 3px 0}.elementor-control-type-color.e-control-global .e-global__popover-toggle~.pickr{border-radius:0 3px 3px 0;flex-shrink:0}.elementor-control-type-color .elementor-control-title{flex-grow:1}.elementor-control-type-color .elementor-control-input-wrapper{display:flex;justify-content:flex-end}.elementor-control-type-color .elementor-control-dynamic-switcher{border-left-width:0;border-radius:0 3px 3px 0}.elementor-control-type-color.elementor-control-dynamic .pickr{border-radius:3px 0 0 3px}.elementor-group-control-css-filter .elementor-slider{height:6px;box-shadow:inset 0 0 1px 1px rgba(0,0,0,.2)}.elementor-group-control-css-filter .elementor-control-content>.elementor-control-field>.elementor-control-input-wrapper{margin-top:0;margin-bottom:5px}.elementor-group-control-blur .elementor-slider{background:url(../images/blur.png);background-size:cover;background-position:50%}.elementor-group-control-contrast .elementor-slider{background:url(../images/contrast.png);background-size:100% 100%}.elementor-group-control-hue .elementor-slider{background-image:linear-gradient(90deg,red,orange,#ff0,#adff2f,#32cd32,#00bfff,#00f,#9400d3 95%)}.elementor-group-control-saturate .elementor-slider{background-image:linear-gradient(90deg,grey,red)}.elementor-group-control-brightness .elementor-slider{background-image:linear-gradient(90deg,#000,#fff)}.elementor-control-type-dimensions .elementor-control-dimensions{display:flex}.elementor-control-type-dimensions li{flex:1;transition:flex-grow .3s ease-in-out}.elementor-control-type-dimensions li .elementor-link-dimensions,.elementor-control-type-dimensions li input{display:block;text-align:center;width:100%;height:27px}.elementor-control-type-dimensions li input{border-left:none;border-radius:0;padding:3px}.elementor-control-type-dimensions li input:focus{border-left:1px solid #a4afb7;margin-left:-1px;width:calc(100% + 1px)}.elementor-control-type-dimensions li input:focus+.elementor-control-dimension-label{color:#a4afb7}.elementor-control-type-dimensions li .elementor-link-dimensions{border:1px solid #d5dadf;border-left:none;background-color:#fff;padding:0;outline:none;border-radius:0 3px 3px 0;cursor:pointer}.elementor-control-type-dimensions li:first-child input{border-left:1px solid #d5dadf;border-radius:3px 0 0 3px}.elementor-control-type-dimensions li:first-child input:focus{border-color:#a4afb7;margin-left:0;width:100%}.elementor-control-type-dimensions li:last-child{max-width:27px}.elementor-control-type-dimensions.e-units-custom li.elementor-control-dimension:focus-within{flex:2.5}.elementor-control-type-dimensions .elementor-control-dimension-label{display:block;text-align:center;color:#d5dadf;font-size:9px;text-transform:uppercase;padding-top:5px}.elementor-control-type-dimensions .elementor-link-dimensions.unlinked{background-color:#fff}.elementor-control-type-dimensions .elementor-link-dimensions.unlinked .elementor-linked{display:none}.elementor-control-type-dimensions .elementor-link-dimensions:not(.unlinked){background-color:#a4afb7;border-color:#a4afb7}.elementor-control-type-dimensions .elementor-link-dimensions:not(.unlinked) .elementor-unlinked{display:none}.elementor-control-type-dimensions .elementor-link-dimensions .elementor-linked{color:#fff}.elementor-control-type-icons .elementor-control-media__preview>*{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.elementor-control-type-icons .elementor-control-media__preview i{font-size:70px;color:#6d7882}.elementor-control-type-icons .elementor-control-media__preview svg{height:75%}.elementor-control-type-icons .elementor-control-icons--inline__svg i.eicon-upload{font-size:15px}.elementor-control-type-gallery .elementor-control-media__content{border:1px solid #d5dadf;border-radius:3px}.elementor-control-type-gallery .elementor-control-gallery-status{font-size:12px;height:27px;padding-left:10px;border-bottom:1px solid #d5dadf;display:flex}.elementor-control-type-gallery .elementor-control-gallery-status>*{display:flex;align-items:center}.elementor-control-type-gallery .elementor-control-gallery-status-title{flex-grow:1}.elementor-control-type-gallery .elementor-control-gallery-content{position:relative;overflow:hidden}.elementor-control-type-gallery .elementor-control-gallery-content:not(:hover) .elementor-control-gallery-edit{opacity:0}.elementor-control-type-gallery .elementor-control-gallery-thumbnails{display:grid;grid-template-columns:repeat(auto-fill,minmax(48px,1fr));grid-gap:10px;cursor:pointer;padding:10px}.elementor-control-type-gallery .elementor-control-gallery-thumbnail{width:48px;height:48px;background-size:cover;background-position:50% 50%}.elementor-control-type-gallery .elementor-control-gallery-edit{position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(109,120,130,.3);padding:10px;font-size:11px;transition:all .3s ease-in-out;pointer-events:none;cursor:pointer;opacity:1}.elementor-control-type-gallery .elementor-control-gallery-edit span{position:absolute;top:10px;right:10px;width:21px;height:21px;background-color:hsla(0,0%,100%,.9);color:#a4afb7;box-shadow:0 0 7px 0 rgba(0,0,0,.2);border-radius:3px}.elementor-control-type-gallery .elementor-control-gallery-edit span i{font-size:11px;padding:5px}.elementor-control-type-gallery .elementor-control-gallery-add{width:48px;height:48px;color:#fff;background-color:#d5dadf;font-size:14px;border-radius:0}.elementor-control-type-gallery .elementor-control-gallery-add:hover{background-color:#c2cbd2}.elementor-control-type-gallery .elementor-control-gallery-add i{margin:0;color:#a4afb7}.elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-clear,.elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-edit,.elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-thumbnails{display:none}.elementor-control-type-gallery.elementor-gallery-empty .elementor-control-gallery-content{padding:10px}.elementor-control-type-gallery.elementor-gallery-has-images .elementor-control-gallery-add{display:none}.elementor-control-type-gallery.elementor-control-dynamic .elementor-control-gallery-clear{border-left:1px solid #d5dadf}.elementor-control-type-gallery .elementor-control-gallery-clear{cursor:pointer;justify-content:center}.elementor-control-type-gallery .elementor-control-gallery-clear:hover{color:#b01b1b}.elementor-control-type-gallery .elementor-control-dynamic-switcher{border:1px solid #d5dadf;border-top:none;border-right:none;border-radius:0 3px 0 0}.e-global__popover{width:288px;z-index:1;font-size:12px;padding-left:10px}.e-global__popover-toggle{border:1px solid #d5dadf;border-right:0;border-radius:3px 0 0 3px;display:flex;align-items:center;justify-content:center;cursor:pointer}.e-global__popover-toggle--active i{color:#71d7f7}.e-global__popover-container{box-shadow:0 2px 15px rgba(0,0,0,.3);border-radius:3px;background-color:#fff;padding-bottom:5px}.e-global__popover-title{padding:15px 20px;font-weight:500;color:#6d7882;border-bottom:1px solid #e6e9ec;display:flex}.e-global__popover-title>i{margin-right:5px;color:#d5dadf}.e-global__popover-title-text{flex-grow:1}.e-global__popover-info{margin-right:5px;display:inline-block}.e-global__popover-info-tooltip{width:270px;z-index:1;background-color:rgba(0,0,0,.9);color:#fff;padding:20px;border-radius:3px}.e-global__popover-info-tooltip:after{content:"";position:absolute;bottom:-17px;left:16px;border:10px solid transparent;border-top-color:rgba(0,0,0,.9)}.e-global__popover-info i{color:#d5dadf;font-size:13px}.e-global__preview-items-container{max-height:260px;overflow-y:auto;margin-top:5px}.e-global__preview-items-container::-webkit-scrollbar{width:7px}.e-global__preview-items-container::-webkit-scrollbar-thumb{background-color:#c2cbd2;border-radius:10px}.e-global__manage-button{font-weight:500;cursor:pointer}.e-global__manage-button:hover i{color:#4ab7f4}.e-global__manage-button i{color:#6d7882}.e-global__typography{padding:5px 10px 5px 35px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.e-global__typography.e-global__preview-item--selected:before{font-family:eicons;font-size:13px;content:"\e90e";position:absolute;transform:translateY(-50%);top:50%;left:12px}.e-global__color{margin:5px auto;padding:5px 20px;display:flex;align-items:center}.e-global__color:first-child{margin-top:5px}.e-global__color:last-child{margin-bottom:10px}.e-global__color-preview-container{height:20px;width:20px;border-radius:3px;border:1px solid rgba(0,0,0,.1);margin-right:10px;flex-shrink:0;position:relative}.e-global__color-preview-color,.e-global__color-preview-transparent-bg{border-radius:3px;height:100%;width:100%;position:absolute;top:0;left:0}.e-global__color-preview-transparent-bg{background-image:linear-gradient(45deg,#ddd 25%,transparent 0,transparent 75%,#ddd 0,#ddd),linear-gradient(45deg,#ddd 25%,transparent 0,transparent 75%,#ddd 0,#ddd);background-size:12px 12px;background-position:0 0,calc(12px / 2) calc(12px / 2)}.e-global__color-title{font-weight:500;color:#6d7882;flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-right:10px}.e-global__color-hex{font-size:10px;font-weight:500;color:#c2cbd2}.e-global__color .pcr-button{background-color:#fff}.e-global__color.e-global__preview-item--selected .e-global__color-preview-container{display:flex;justify-content:center;align-items:center;color:#fff}.e-global__color.e-global__preview-item--selected .e-global__color-preview-container:before{font-family:eicons;font-size:13px;content:"\e90e";text-shadow:0 0 1px #000;z-index:1}.e-global__preview-item{cursor:pointer;position:relative}.e-global__preview-item:hover{background-color:#f1f3f5}.e-global__preview-item:hover .e-global__color-hex{color:#a4afb7}.e-global__confirm-add .dialog-buttons-wrapper>.dialog-button.dialog-confirm-ok{color:#39b54a}.e-global__confirm-delete i{color:#b01b1b}.e-global__confirm-message-text i{color:#fcb92c}.e-global__confirm-input-wrapper{display:flex;align-items:center;border:1px solid #a4afb7;border-radius:3px;margin-top:10px;padding:2px}.e-global__confirm-input-wrapper input{font-family:Roboto,Arial,sans-serif;font-weight:500;font-size:12px;padding:2px;border:0}.e-control-global .elementor-control-input-wrapper{display:flex;justify-content:flex-end;max-width:135px;width:100%}.e-control-global.elementor-control .elementor-control-input-wrapper{direction:ltr}.e-control-global .elementor-control-spinner{margin-right:4px}.elementor-control-type-hidden{display:none!important}.elementor-control-type-icon .select2-selection__rendered .eicon{margin-right:3px}.elementor-control-type-image_dimensions .elementor-control-field-description{margin:0 0 15px;line-height:1.4}.elementor-control-type-image_dimensions .elementor-control-input-wrapper{overflow:hidden}.elementor-control-type-image_dimensions .elementor-image-dimensions-field{width:65px;float:left}.elementor-control-type-image_dimensions .elementor-image-dimensions-field input:focus+.elementor-image-dimensions-field-description{color:#a4afb7}.elementor-control-type-image_dimensions .elementor-image-dimensions-separator{width:20px;text-align:center;float:left;padding-top:4px}.elementor-control-type-image_dimensions .elementor-image-dimensions-field-description{display:block;text-transform:uppercase;margin-top:5px;color:#d5dadf;font-size:9px;text-align:center}.elementor-control-type-image_dimensions .elementor-image-dimensions-apply-button{float:right;height:27px;width:65px}.elementor-control-media.elementor-media-empty .elementor-control-media-area .elementor-control-media__content__remove,.elementor-control-media.elementor-media-empty .elementor-control-media-area .elementor-control-media__remove,.elementor-control-media:not(.elementor-media-empty) .elementor-control-media__content__upload-button{display:none}.elementor-control-media .elementor-control-input-wrapper{border:1px solid #d5dadf}.elementor-control-media .eicon-plus-circle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;font-size:20px}.elementor-control-media__content__upload-button{background-color:#d5dadf}.elementor-control-media__preview{height:100%;background-size:cover;background-position:50%}.elementor-control-media-area{background-image:linear-gradient(45deg,#ddd 25%,transparent 0,transparent 75%,#ddd 0,#ddd),linear-gradient(45deg,#ddd 25%,transparent 0,transparent 75%,#ddd 0,#ddd);background-size:16px 16px;background-position:0 0,calc(16px / 2) calc(16px / 2);background-color:#f6f6f6}.elementor-control-media-area:not(:hover) .elementor-control-media__remove{display:none}.elementor-control-media-area .eicon-video-camera{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:hsla(0,0%,100%,.7);font-size:21px}.elementor-control-media .elementor-control-media__content{cursor:pointer;overflow:hidden}.elementor-control-media .elementor-control-media__content:hover:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.2);pointer-events:none}.elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools{bottom:-30px}.elementor-control-media__content{transition:all .2s ease-in-out}.elementor-control-media__tools{position:absolute;bottom:0;left:0;right:0;height:27px;transition:all .2s ease-in-out}.elementor-control-media__tools>:not(:first-child){margin-left:1px}.elementor-control-media__tool{display:flex;align-items:center;justify-content:center;flex-grow:1;color:#fff;background-color:rgba(109,120,130,.85);font-size:11px;transition:background .3s}.elementor-control-media__tool:hover{background-color:rgba(109,120,130,.95)}.elementor-control-media__remove{display:flex;align-items:center;justify-content:center;transition:all .3s ease-in-out}.elementor-control-media__content__remove{position:absolute;z-index:1;top:10px;right:10px;width:20px;height:20px;font-size:11px;color:#a4afb7;background-color:hsla(0,0%,100%,.9);border-radius:3px;box-shadow:0 0 7px 0 rgba(0,0,0,.1)}.elementor-control-media__content__remove:hover{background-color:#fff;box-shadow:0 0 5px 0 rgba(0,0,0,.4)}.elementor-control-media.elementor-media-empty .elementor-control-file-area{display:none}.elementor-control-media__file{display:flex;justify-content:space-between;align-items:center;width:100%;margin-top:10px;border:1px solid #d5dadf}.elementor-control-media__file__content{padding-left:5px;font-size:12px}.elementor-control-media__file__content__label{color:#a4afb7}.elementor-control-media__file__content__info{display:flex;align-items:center;font-weight:500}.elementor-control-media__file__content__info__icon{margin-right:5px}.elementor-control-media__file__controls{display:flex;border-left:1px solid #d5dadf}.elementor-control-media__file__controls__remove,.elementor-control-media__file__controls__upload-button{width:27px;height:27px;cursor:pointer;align-items:center}.elementor-control-media__file__controls__upload-button{display:flex;justify-content:center}.elementor-control-media__file__controls__remove{border-right:1px solid #d5dadf}.elementor-control-media.elementor-media-empty .elementor-control-media__file__content__info,.elementor-control-media.elementor-media-empty .elementor-control-media__file__controls__remove,.elementor-control-media:not(.elementor-media-empty) .elementor-control-media__file__content__label{display:none}.elementor-control-media .elementor-control-dynamic-switcher{border:none;border-radius:0;background-color:rgba(109,120,130,.85);color:#fff}.elementor-control-media .elementor-control-dynamic-switcher:hover{background-color:rgba(109,120,130,.95)}.elementor-control-type-media.elementor-control-dynamic-value .elementor-control-input-wrapper{border:none}.elementor-control:not(.elementor-control-type-icons) .elementor-control-media__preview{background-color:#d5dadf}.elementor-control-type-number.elementor-control-dynamic input{border-radius:3px 0 0 3px;border-right:none}.elementor-control-type-number.elementor-control-dynamic .elementor-control-dynamic-switcher{border-radius:0 3px 3px 0}.elementor-control-type-order .elementor-control-oreder-wrapper{display:flex}.elementor-control-type-order input{display:none}.elementor-control-type-order input:checked+.elementor-control-order-label{transform:scaleY(-1)}.elementor-control-type-order select{border-radius:3px 0 0 3px}.elementor-control-type-order select:not(:focus)~.elementor-control-order-label{border-color:#d5dadf}.elementor-control-type-order select:focus~.elementor-control-order-label{border-color:#a4afb7}.elementor-control-type-order .elementor-control-order-label{position:relative;padding:0;width:40px;border:1px solid;font-size:10px;border-radius:0 3px 3px 0;margin-left:-3px;background-color:#fff;cursor:pointer}.elementor-control-type-order .elementor-control-order-label i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.elementor-control-type-popover_toggle input{display:none}.elementor-control-type-popover_toggle label{cursor:pointer}.elementor-control-type-popover_toggle .elementor-control-input-wrapper{direction:rtl}.elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle:checked+.elementor-control-popover-toggle-toggle-label{color:#71d7f7}.elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle:not(:checked)~.elementor-control-popover-toggle-reset-label{display:none}.elementor-control-type-popover_toggle .elementor-control-popover-toggle-reset-label{color:#c2cbd2;margin-right:5px}.elementor-control-type-popover_toggle .elementor-control-popover-toggle-toggle-label{height:27px;display:inline-flex;align-items:center;justify-content:center;border-radius:3px;border:1px solid #d5dadf}.elementor-controls-popover.e-controls-popover--typography{padding-top:0}.e-control-global .elementor-control-popover-toggle-toggle-label{border-radius:0 3px 3px 0;flex-shrink:0}.elementor-control-type-repeater .elementor-control:not(.elementor-control-type-tab){padding-right:10px;padding-left:10px;padding-bottom:10px}.elementor-control-type-repeater.elementor-repeater-has-minimum-rows .elementor-repeater-tool-remove{display:none}.elementor-control-type-repeater .elementor-repeater-fields{margin:10px 0}.elementor-control-type-repeater .elementor-repeater-row-controls{border:1px solid #d5dadf;border-top:0 solid #d5dadf;padding-top:15px}.elementor-control-type-repeater .elementor-repeater-row-controls:not(.editable){display:none}.elementor-control-type-repeater .elementor-repeater-row-tools{display:table;table-layout:fixed;width:100%;color:#556068;background-color:#d5dadf;height:40px;border-spacing:1px;transition:all .5s}.elementor-control-type-repeater .elementor-repeater-row-tools:hover{background-color:#a4afb7}.elementor-control-type-repeater .elementor-repeater-row-tools>div{display:table-cell;text-align:center;vertical-align:middle;cursor:pointer}.elementor-control-type-repeater .elementor-repeater-row-tools>div:not(.elementor-repeater-row-handle-sortable){background-color:#fff}.elementor-control-type-repeater .elementor-repeater-row-tools>div:hover{opacity:.95}.elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title{text-align:left;padding:0 10px;font-size:12px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title .eicon,.elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title i,.elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title svg{margin-right:5px}.elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-item-title img[src$=svg]{width:1em}.elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-tool{width:40px}.elementor-control-type-repeater .elementor-repeater-row-tools .elementor-repeater-row-handle-sortable{cursor:move;width:10px;color:#fff}.elementor-control-type-repeater .elementor-button-wrapper{text-align:center;padding-top:5px}.elementor-control-type-section{margin-top:10px;padding:0}.elementor-control-type-section.elementor-open{padding-bottom:15px}.elementor-control-type-section+.elementor-control:not(.elementor-control-type-section):before{display:none}.elementor-shadow-box .elementor-shadow-slider{margin-top:10px}.elementor-shadow-box .elementor-color-picker-wrapper .elementor-control-title{flex-grow:1}.elementor-control-type-slider.elementor-control-dynamic input{border-radius:3px 0 0 3px}.elementor-control-type-slider .elementor-control-unit-2{width:21%}.elementor-control-type-slider.elementor-control-type-slider--multiple .elementor-control-input-wrapper{display:block}.elementor-control-type-slider--multiple{padding-bottom:40px}.elementor-control-type-slider--multiple .elementor-slider{margin-top:12px;width:98%}.elementor-control-type-slider--handles-range .elementor-slider .noUi-handle{border-radius:0;width:10px;transform:translateY(calc(50% - 14px)) translateX(4px)}.elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after{content:"";position:absolute;top:2px;height:12px;width:11px;transform:rotate(45deg);background-color:#fff;border-radius:3px}.elementor-control-type-slider--handles-range .elementor-slider .noUi-handle-lower:after{left:5px;box-shadow:2px -2px 3px 0 rgba(0,0,0,.1)}.elementor-control-type-slider--handles-range .elementor-slider .noUi-handle-upper:after{right:5px;box-shadow:-2px 2px 3px 0 rgba(0,0,0,.1)}.elementor-control-type-slider .elementor-control-dynamic-switcher{border-left-width:0;border-radius:0 3px 3px 0}.elementor-control-type-slider .elementor-control-input-wrapper{display:flex;align-items:center}.elementor-control-type-slider .elementor-dynamic-cover{margin-top:10px}.elementor-control-type-slider.e-units-custom .elementor-slider{display:none}.elementor-control-type-slider.e-units-custom .elementor-slider-input{width:100%;margin:0;transition:none}.elementor-slider{flex-grow:1;height:4px;background-color:#d5dadf;border-radius:5px;position:relative;cursor:pointer}.elementor-slider-input{width:21%;min-width:54px;margin-left:12px;transition:width .3s ease-in-out}.elementor-slider__extra{position:relative}.elementor-slider__labels{display:flex;justify-content:space-between}.elementor-slider__label{font-size:9px;color:#c2cbd2}.elementor-slider__scales{position:absolute;display:flex;justify-content:space-evenly;width:100%;margin-top:4px}.elementor-slider__scale{width:1px;height:21px;background-color:#a4afb7}.elementor-slider .noUi-handle{height:16px;width:16px;background-color:#fff;right:0;transform:translateY(calc(50% - 14px)) translateX(8px);position:absolute;box-shadow:0 1px 5px rgba(0,0,0,.3);border-radius:50%}.elementor-slider .noUi-connects{position:absolute;width:100%;height:4px}.elementor-slider .noUi-connect{position:absolute;z-index:0;top:0;left:0;height:100%;width:100%;will-change:transform;transform-origin:0 0;background-color:#a4afb7}.elementor-slider .noUi-tooltip{position:absolute;top:calc(100% + 5px);left:calc(50% - 4px);transform:translateX(-50%);font-size:10px}.elementor-control-type-structure .elementor-control-field{display:initial}.elementor-control-type-structure .elementor-control-structure-preset{padding:3px;border-radius:3px;display:inline-block;cursor:pointer;height:50px}.elementor-control-type-structure .elementor-control-structure-preset svg{height:100%}.elementor-control-type-structure .elementor-control-structure-preset path{fill:#e6e9ec}.elementor-control-type-structure .elementor-control-structure-reset{padding:15px 20px 0;font-size:11px;cursor:pointer;color:#a4afb7;border-top:1px solid #e6e9ec;margin:0 -20px}.elementor-control-type-structure .elementor-control-structure-title{margin:10px -20px 0}.elementor-control-type-structure .elementor-control-structure-title:before{height:10px;box-shadow:inset 0 2px 4px hsla(0,0%,49.8%,.1)}.elementor-control-type-structure .elementor-control-structure-presets{display:flex;flex-wrap:wrap;justify-content:space-between}.elementor-control-type-structure .elementor-control-structure-presets input{display:none}.elementor-control-type-structure .elementor-control-structure-presets input:checked+.elementor-control-structure-preset path{fill:#a4afb7}.elementor-control-type-structure .elementor-control-structure-preset-wrapper{margin-bottom:15px}.elementor-control-type-structure .elementor-control-structure-preset-title{text-align:center;padding-top:5px;font-style:italic;font-size:11px;color:#a4afb7}.elementor-control-type-switcher .elementor-control-input-wrapper{text-align:right}.elementor-control-type-switcher .elementor-switch{position:relative;display:inline-block;vertical-align:top;height:20px;background-color:#fff;border-radius:18px;cursor:pointer}.elementor-control-type-switcher .elementor-switch-input{display:none}.elementor-control-type-switcher .elementor-switch-label{position:relative;display:block;height:inherit;font-size:7px;text-transform:uppercase;background:#eceeef;border-radius:inherit;box-shadow:inset 0 1px 2px rgba(0,0,0,.12),inset 0 0 2px rgba(0,0,0,.15);transition:.15s ease-out;transition-property:opacity,background}.elementor-control-type-switcher .elementor-switch-label:after,.elementor-control-type-switcher .elementor-switch-label:before{position:absolute;top:0;width:50%;text-align:center;line-height:20px;transition:inherit}.elementor-control-type-switcher .elementor-switch-label:before{content:attr(data-off);right:3px;color:#a4afb7;text-shadow:0 1px hsla(0,0%,100%,.5)}.elementor-control-type-switcher .elementor-switch-label:after{content:attr(data-on);left:3px;color:#fff;text-shadow:0 1px rgba(0,0,0,.2);opacity:0}.elementor-control-type-switcher .elementor-switch-input:checked~.elementor-switch-label{background:#71d7f7;box-shadow:inset 0 1px 2px rgba(0,0,0,.15),inset 0 0 3px rgba(0,0,0,.2)}.elementor-control-type-switcher .elementor-switch-input:checked~.elementor-switch-label:before{opacity:0}.elementor-control-type-switcher .elementor-switch-input:checked~.elementor-switch-label:after{opacity:1}.elementor-control-type-switcher .elementor-switch-handle{position:absolute;top:1px;left:1px;width:18px;height:18px;background:#fff;border-radius:10px;transition:left .15s ease-out}.elementor-control-type-switcher .elementor-switch-input:checked~.elementor-switch-handle{left:auto;right:1px;box-shadow:-1px 1px 5px rgba(0,0,0,.2)}.elementor-control-type-tabs{font-size:.8em;text-transform:uppercase;display:flex}.elementor-control-type-tab{text-align:center;width:100%;padding:0;line-height:25px;border-top:1px solid #d5dadf;border-bottom:1px solid #d5dadf;border-right:1px solid #d5dadf;cursor:pointer}.elementor-control-type-tab:first-child{border-left:1px solid #d5dadf;border-top-left-radius:3px;border-bottom-left-radius:3px}.elementor-control-type-tab:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.elementor-control-type-tab.elementor-tab-active{background-color:#a4afb7;border-color:#a4afb7;color:#fff}.elementor-tab-close{display:none!important}.elementor-control-type-code.elementor-control-dynamic-value .elementor-control-dynamic-switcher,.elementor-control-type-textarea.elementor-control-dynamic-value .elementor-control-dynamic-switcher{border-radius:0 3px 3px 0;border-left-width:0}.elementor-control-type-code .elementor-control-dynamic-switcher,.elementor-control-type-textarea .elementor-control-dynamic-switcher{border-radius:0 3px}.elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher,.elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher{position:absolute;top:0;z-index:1;right:0}.elementor-control-type-code .elementor-control-input-wrapper,.elementor-control-type-textarea .elementor-control-input-wrapper{position:relative}.elementor-control-type-code textarea,.elementor-control-type-textarea textarea{display:block;font-family:inherit}.elementor-control-type-code textarea:focus+.elementor-control-dynamic-switcher,.elementor-control-type-textarea textarea:focus+.elementor-control-dynamic-switcher{display:none}.elementor-control-type-code pre:focus-within+.elementor-control-dynamic-switcher,.elementor-control-type-textarea pre:focus-within+.elementor-control-dynamic-switcher{display:none}.elementor-control-type-code .elementor-control-dynamic-switcher{border-radius:0 3px}.elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher{right:0}.elementor-control-type-url.elementor-control-dynamic .elementor-input{border-radius:3px 0 0 3px}.elementor-control-type-url .elementor-control-field{position:relative}.elementor-control-type-url.elementor-control-dynamic-value .elementor-control-url-more,.elementor-control-type-url:not(.elementor-control-dynamic) .elementor-control-url-more{border-radius:0 3px 3px 0}.elementor-control-type-url .elementor-control-input-wrapper{display:flex;flex-direction:row}.elementor-control-type-url .elementor-control-url-more{display:flex;align-items:center;justify-content:center;flex-shrink:0;border:1px solid #d5dadf;border-left:none;cursor:pointer}.elementor-control-type-url .elementor-control-url-more i{font-size:12px}.elementor-control-type-url .elementor-control-url-more-options{display:none;padding-top:10px}.elementor-control-type-url .elementor-control-url-more-options .elementor-control-field-description{margin-top:10px}.elementor-control-type-url .elementor-control-url-option{display:flex;align-items:center}.elementor-control-type-url .elementor-control-url-option:not(:last-child){padding-bottom:10px}.elementor-control-type-url .elementor-control-url-option input,.elementor-control-type-url .elementor-control-url-option label{cursor:pointer}.elementor-control-type-url .elementor-control-url-option-input{padding:0;border-radius:2px;margin:0 5px 0 0;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:none;content:none;height:15px;width:15px;border:1px solid #d5dadf;display:inline-flex;align-items:center;justify-content:center}.elementor-control-type-url .elementor-control-url-option-input:checked{background:#71d7f7;border:none}.elementor-control-type-url .elementor-control-url-option-input:checked:before{display:block;content:"";width:4px;height:7px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}.elementor-control-type-url .elementor-control-url-option label{font-size:12px}.elementor-control-type-url .elementor-control-url-external-hide .elementor-control-url-more{display:none}.elementor-control-type-url .elementor-control-url-external-show .elementor-dynamic-cover,.elementor-control-type-url .elementor-control-url-external-show .elementor-input{border-radius:3px 0 0 3px}.elementor-control-type-url .elementor-control-url-autocomplete-spinner{display:none;position:absolute;top:5px;right:0;width:10px;height:10px;font-size:10px;color:#d4d4d4}.elementor-control-type-url .elementor-control-url__custom-attributes{margin-top:5px}.elementor-control-type-url .elementor-control-url__custom-attributes label{font-size:12px}.elementor-control-type-url .elementor-control-url__custom-attributes input{width:100%;margin-top:10px}.elementor-control-type-url .elementor-input{direction:ltr}.elementor-control-type-url .elementor-input:not(:focus)+.elementor-control-url-more{border-color:#d5dadf}.elementor-control-type-url .elementor-input:focus~div{border-color:#a4afb7}.elementor-control-type-url .elementor-control-dynamic-switcher{border-left:none;border-radius:0 3px 3px 0}.elementor-autocomplete-menu{position:absolute;background:#fff;color:#495157;border:1px solid #a4afb7;margin:0;list-style:none;padding:4px 0;height:auto;width:100%;min-width:260px;max-width:300px;max-height:200px;overflow-y:auto;border-radius:3px;transition:all .3s ease-in-out;cursor:default;z-index:1}.elementor-autocomplete-menu .ui-menu-item{display:flex;justify-content:space-between;align-self:baseline;padding:5px 8px;font-size:12px;width:100%;line-height:1.2;cursor:pointer}.elementor-autocomplete-menu .ui-menu-item.ui-state-active,.elementor-autocomplete-menu .ui-menu-item.ui-state-focus,.elementor-autocomplete-menu .ui-menu-item.ui-state-hover{background:#e6e9ec}.elementor-autocomplete-menu .elementor-autocomplete-item-info{font-size:10px;padding-top:2px}.elementor-control-type-wp_widget .widget-inside{display:block}.elementor-control-type-wp_widget .quicktags-toolbar input{width:auto}.elementor-control-type-wysiwyg *{box-sizing:content-box}.elementor-control-type-wysiwyg .wp-editor-container{border:1px solid #e6e9ec}.elementor-control-type-wysiwyg .wp-editor-tabs{border:1px solid #d5dadf;border-bottom:none;border-radius:3px 3px 0 0}.elementor-control-type-wysiwyg #insert-media-button{height:auto;line-height:24px;font-size:10px;color:#6d7882;border-color:#d5dadf;background-color:#e6e9ec;min-height:0}.elementor-control-type-wysiwyg .ed_button{height:22px;width:auto}.elementor-control-type-wysiwyg .wp-media-buttons-icon{height:14px;margin:0}.elementor-control-type-wysiwyg .wp-media-buttons-icon:before{font-size:14px}.elementor-control-type-wysiwyg .wp-switch-editor{position:static;border:none;margin:0;color:#6d7882;font-size:10px;padding:3px 9px 4px}.elementor-control-type-wysiwyg .switch-html{border:solid #d5dadf;border-width:0 1px}.elementor-control-type-wysiwyg .html-active .switch-tmce{background-color:transparent}.elementor-control-type-wysiwyg .html-active .switch-html,.elementor-control-type-wysiwyg .tmce-active .switch-tmce{background-color:#e6e9ec}.elementor-control-type-wysiwyg .tmce-active .switch-html{background-color:transparent}.elementor-control-type-wysiwyg .mce-toolbar-grp,.elementor-control-type-wysiwyg .quicktags-toolbar{background-color:#e6e9ec}.elementor-control-type-wysiwyg .mce-toolbar-grp>div{padding:0 3px}.elementor-control-type-wysiwyg .elementor-wp-editor{box-sizing:border-box}.elementor-control-type-wysiwyg .mce-ico{color:#6d7882;font-size:16px}.elementor-control-type-wysiwyg .mce-btn{margin-right:0;margin-left:0}.elementor-control-type-wysiwyg .mce-btn.mce-active,.elementor-control-type-wysiwyg .mce-btn:active,.elementor-control-type-wysiwyg .mce-btn:hover{border-color:#d5dadf}.elementor-control-type-wysiwyg .mce-path{padding:5px 10px}.elementor-control-type-wysiwyg .mce-path-item{font-size:12px;color:#6d7882}.elementor-control-type-wysiwyg .elementor-control-dynamic-switcher{border:none}.elementor-control-type-text .elementor-control-dynamic-switcher{border-left-width:0;border-radius:0 3px 3px 0}.elementor-control-type-text.elementor-control-dynamic input{border-radius:3px 0 0 3px}.elementor-control-type-date_time .elementor-control-dynamic-switcher{border-inline-start-width:0;border-start-start-radius:0;border-start-end-radius:3px;border-end-end-radius:3px;border-end-start-radius:0}.elementor-control-type-date_time.elementor-control-dynamic input{border-start-start-radius:3px;border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:3px}.ui-resizable-n{top:-5px}.ui-resizable-e{right:-5px}.ui-resizable-s{bottom:-5px}.ui-resizable-w{left:-5px}.ui-resizable-ne{top:-5px;right:-5px}.ui-resizable-nw{top:-5px;left:-5px}.ui-resizable-se{bottom:-5px;right:-5px}.ui-resizable-sw{bottom:-5px;left:-5px}.ui-resizable-n,.ui-resizable-s{left:0;height:10px;width:100%;cursor:ns-resize}.ui-resizable-e,.ui-resizable-w{top:0;height:100%;width:10px;cursor:ew-resize}.ui-resizable-ne,.ui-resizable-nw,.ui-resizable-se,.ui-resizable-sw{height:15px;width:15px}.ui-resizable-nw,.ui-resizable-se{cursor:nwse-resize}.ui-resizable-ne,.ui-resizable-sw{cursor:nesw-resize}.ui-resizable-handle{position:absolute}.ui-resizable-resizing{pointer-events:none}@keyframes placeholder-section{0%{height:0;opacity:0}to{height:40px;opacity:.9}}@keyframes placeholder-widget{0%{height:0;opacity:0}to{height:10px;opacity:.9}}@keyframes section-outline{0%{opacity:0}to{opacity:1}}body.elementor-editor-active .elementor.elementor-edit-mode .article,body.elementor-editor-active .elementor.elementor-edit-mode.layout-section .entry-content{overflow:visible}body.elementor-editor-active .elementor.elementor-edit-mode .elementor-element-overlay .elementor-editor-element-settings{clear:unset}body.elementor-editor-active .elementor.elementor-edit-mode .elementor-element.elementor-section{overflow:visible}.elementor-edit-area .animated{animation-fill-mode:none!important}.elementor-edit-area ul.elementor-editor-element-settings{word-break:normal;padding:0}.elementor-edit-area .gallery{opacity:1}.pen{position:relative;outline:none}.pen:not([data-elementor-inline-editing-toolbar=advanced]){white-space:pre-wrap}.pen-menu{box-shadow:1px 2px 3px -2px #222;background-color:#6d7882;position:fixed;overflow:hidden;border-radius:3px;z-index:9999}.pen-menu:after{top:100%;content:"";position:absolute;border:6px solid transparent;border-top-color:#6d7882;left:50%;transform:translateX(-50%)}.pen-menu-below:after{top:0;transform:translateX(-50%) translateY(-100%) rotate(180deg)}.pen-icon{position:relative;display:flex;align-items:center;justify-content:center;height:35px;padding:0 10px;font-size:21px;color:#d5dadf;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pen-icon:hover{background:#556068}.pen-icon[data-action=closeGroup],.pen-icon[data-group]{display:none}.pen-icon[data-action=close]:before{content:"";position:absolute;left:0;height:60%;width:1px;background-color:#556068}.pen-icon.active{background-color:#556068;box-shadow:inset 2px 2px 4px #556068}.pen-group-icon:after{font-family:eicons;font-size:12px;content:"\e92a";padding-left:4px;color:#71d7f7}.pen-input-wrapper{align-items:center}.pen-input-wrapper .pen-url-input{font-size:12px;line-height:1.5;padding:0 10px;width:250px;direction:ltr}.pen-input-wrapper .pen-url-input,.pen-input-wrapper .pen-url-input:focus{background-color:transparent;border:none;outline:none;box-shadow:none;color:#fff}.pen-input-wrapper .pen-url-input::-moz-placeholder{color:#d5dadf}.pen-input-wrapper .pen-url-input::placeholder{color:#d5dadf}.pen-input-label{margin:0 -1px 0 0}.pen-placeholder:before{content:attr(data-pen-placeholder);position:absolute;font-weight:400;color:#757575;opacity:.6}.pen-external-url-checkbox{display:none}.pen-external-url-checkbox:checked+i{color:#fff}.elementor-inline-editing i:not([class]){font-style:italic}.elementor-inline-editing b{font-weight:700}.elementor-inline-editing u{text-decoration:underline}.e-element-color-picker{--primary-color:#71d7f7;--swatch-size:25px;cursor:default;display:flex;position:absolute;width:calc((var(--count) + 1) * var(--swatch-size));height:var(--swatch-size);top:var(--top);left:var(--left);right:var(--right,unset);border-radius:3px;z-index:9998;background-color:var(--primary-color);padding:1px;box-sizing:content-box;transition:opacity .3s,width .3s}.e-element-color-picker,.e-element-color-picker.e-picker-hidden{opacity:0;pointer-events:none}.e-element-color-picker:before{content:"";flex:0 1 var(--swatch-size);max-width:100%;height:100%;box-sizing:border-box;text-align:center}.e-element-color-picker:after{content:"\e91e";font-family:eicons;color:#fff;font-size:1rem;line-height:var(--swatch-size);position:absolute;left:.3rem;z-index:-1}.e-element-color-picker__swatch{flex:1 0 var(--swatch-size);max-width:100%;height:100%;cursor:pointer;transition:all .3s;position:relative;overflow:hidden;border-radius:inherit;background:linear-gradient(var(--color),var(--color)),linear-gradient(var(--primary-color),var(--primary-color))}.e-element-color-picker__swatch:not(:first-child){border-left:1px solid var(--primary-color)}.e-element-color-picker__swatch:before{content:attr(data-text);position:absolute;left:50%;top:50%;opacity:0;color:var(--color);font-size:10px;font-weight:300;font-family:Roboto,Arial,Helvetica,Verdana,sans-serif;transform:translate(-50%,-50%);filter:hue-rotate(180deg) grayscale(1) contrast(999) invert(1);transition:inherit}.e-element-color-picker__swatch:hover{flex-basis:calc(2 * var(--swatch-size));flex-shrink:0}.e-element-color-picker__swatch:hover:before{opacity:1}.e-ui-state--elements-color-picker-color-picking__on :not(.e-element-color-picker__swatch){cursor:url(../images/eyedropper.svg) 0 20,pointer}.e-ui-state--elements-color-picker-color-picking__on .e-element-color-picker:not(.e-picker-hidden):hover,.e-ui-state--elements-color-picker-color-picking__on .elementor-element:hover>.e-element-color-picker:not(.e-picker-hidden),.e-ui-state--elements-color-picker-color-picking__on .elementor-widget-container:hover+.e-element-color-picker:not(.e-picker-hidden){opacity:1;pointer-events:all}.e-ui-state--elements-color-picker-color-picking__on .elementor-section:hover{outline:1px solid #71d7f7}[class*=" eicon-flex"],[class^=eicon-flex]{transition:all .3s;--is-ltr:1;--is-rtl:0;--rotation-direction:calc(var(--is-ltr) - var(--is-rtl))}[class*=" eicon-flex"].eicon-inline,[class^=eicon-flex].eicon-inline{max-height:1em;max-width:1em}:is(.e-ui-state--document-direction-mode__column,.e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow),:is(.e-ui-state--document-direction-mode__column,.e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow){transform:rotate(calc(var(--rotation-direction) * 90deg))}.e-ui-state--document-direction-mode__column-reverse [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h,.eicon-justify-end-h,.eicon-order-start,.eicon-order-end),.e-ui-state--document-direction-mode__column-reverse [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h,.eicon-justify-end-h,.eicon-order-start,.eicon-order-end),:is(.e-ui-state--document-direction-mode__column,.e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v,.eicon-align-end-v),:is(.e-ui-state--document-direction-mode__column,.e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v,.eicon-align-end-v){transform:rotate(calc(var(--rotation-direction) * -90deg))}.e-ui-state--document-direction-mode__row [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h,.eicon-justify-end-h,.eicon-order-start,.eicon-order-end),.e-ui-state--document-direction-mode__row [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h,.eicon-justify-end-h,.eicon-order-start,.eicon-order-end){transform:rotate(calc(var(--is-rtl) * 180deg))}.e-ui-state--document-direction-mode__row-reverse [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h,.eicon-justify-end-h,.eicon-order-start,.eicon-order-end),.e-ui-state--document-direction-mode__row-reverse [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h,.eicon-justify-end-h,.eicon-order-start,.eicon-order-end){transform:rotate(calc(var(--is-ltr) * 180deg))}html.elementor-html{margin-top:0!important}.elementor-edit-area{position:relative}.elementor.loading{opacity:.5}.elementor-edit-area-active{--primary-color:#71d7f7;--secondary-color:#10bcf2;--outline-color:var(--primary-color)}.elementor-edit-area-active .e-con{--primary-color:#0098c7;--secondary-color:#007194;--outline-color:var(--primary-color)}.elementor-edit-area-active .e-con.e-con-boxed.elementor-html5dnd-current-element,.elementor-edit-area-active .e-con.e-dragging-over,.elementor-edit-area-active .e-con.elementor-dragging-on-child{outline:1px solid var(--outline-color)}.elementor-edit-area-active .elementor-inner-section:first-child{margin-top:15px}.elementor-edit-area-active .elementor-widget-wrap.elementor-element-empty{min-height:30px}@media (min-width:768px){.elementor-edit-area-active .elementor-widget-wrap.elementor-element-empty{margin:10px}}.elementor-edit-area-active .elementor-column{min-width:25px}.elementor-edit-area-active .elementor-widget.elementor-loading{opacity:.3}.elementor-edit-area-active .elementor-widget.elementor-element-edit-mode:hover,.elementor-edit-area-active .elementor-widget.elementor-element-editable{box-shadow:0 0 0 1px #71d7f7}.elementor-edit-area-active .elementor-widget:not(:hover) .elementor-editor-element-settings{display:none}.elementor-edit-area-active .elementor-widget.ui-draggable-dragging{pointer-events:none}.elementor-edit-area-active .elementor-editor-element-setting{cursor:pointer;display:flex;align-items:center;justify-content:center;padding:0;margin:0;font-size:11px;color:#fff;width:25px;transition:margin .3s,width .3s,font .3s}.elementor-edit-area-active .elementor-inline-editing{min-height:15px}.elementor-edit-area-active .elementor-edit-hidden{display:none}.elementor-section-wrap:empty{min-height:25px}.elementor-section-wrap>:first-child>.elementor-element-overlay{z-index:9999}.elementor-element>.elementor-element-overlay{position:absolute;top:0;right:0;letter-spacing:0;z-index:9998;pointer-events:none}.elementor-element-empty .elementor-sortable-placeholder{display:none}.elementor-element.elementor-widget-empty{background-color:rgba(213,218,223,.8)}.elementor-element.elementor-widget-empty .elementor-widget-empty-icon{color:#c2cbd2;font-size:22px;display:block;text-align:center;padding:10px 0}.elementor-element:not(:hover):not(.elementor-element-editable)>.elementor-element-overlay .elementor-editor-element-settings{display:none}.elementor-element--toggle-edit-tools>.elementor-element-overlay .elementor-editor-element-edit:not(.elementor-active)~*{width:0;font-size:0}.elementor-element[data-side=bottom]+.elementor-element:before,.elementor-element[data-side=bottom]:last-child:after,.elementor-element[data-side=top]:before{content:"";background-color:#71d7f7;transition-timing-function:ease-out;opacity:.9;height:10px;animation:placeholder-widget .5s;display:block}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{cursor:grab}.elementor-element.elementor-absolute:active,.elementor-element.elementor-fixed:active{cursor:grabbing}.elementor-element.elementor-absolute .eicon-edit:before,.elementor-element.elementor-fixed .eicon-edit:before{content:"\e902"}.e-con>.elementor-element-overlay,.elementor-section>.elementor-element-overlay{left:0;bottom:0}.e-con>.elementor-element-overlay:after,.elementor-section>.elementor-element-overlay:after{position:absolute;left:2px;right:2px;top:2px;bottom:2px;outline:2px solid var(--outline-color);animation:section-outline .75s}.e-con.elementor-element-editable>.elementor-element-overlay:after,.e-con:hover>.elementor-element-overlay:after,.elementor-section.elementor-element-editable>.elementor-element-overlay:after,.elementor-section:hover>.elementor-element-overlay:after{content:""}.e-con-filled .elementor-sortable-placeholder.elementor-column,.elementor-section-filled .elementor-sortable-placeholder.elementor-column{display:none}.e-con-filled .elementor-row.elementor-draggable-over,.elementor-section-filled .elementor-row.elementor-draggable-over{border:1px solid #d72b3f}.elementor-column>.elementor-element-overlay{left:0;bottom:0}.elementor-column>.elementor-element-overlay:after{position:absolute;left:0;right:0;top:0;bottom:0;outline:1px dashed #6d7882}.elementor-column.elementor-element-editable>.elementor-element-overlay,.elementor-column:hover>.elementor-element-overlay{border:1px solid #fff}.elementor-column.elementor-element-editable>.elementor-element-overlay:after,.elementor-column:hover>.elementor-element-overlay:after{content:""}.elementor-column.elementor-dragging-on-child>.elementor-element-overlay{border:1px solid #71d7f7}.elementor-column.elementor-dragging-on-child>.elementor-element-overlay:after{display:none}.elementor-column>.ui-resizable-e,.elementor-column>.ui-resizable-w{cursor:col-resize;width:7px;position:absolute;right:-5px;top:0;height:100%}.elementor-column:last-of-type>.ui-resizable-e,.elementor-column:last-of-type>.ui-resizable-w{display:none!important}@media (max-width:1024px){.elementor-column>.ui-resizable-e,.elementor-column>.ui-resizable-w{display:none!important}}.elementor-editor-element-settings{position:absolute;display:flex;height:26px;list-style:none;margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;font-size:13px;font-weight:400;font-style:normal;line-height:1;z-index:1;pointer-events:all}@media (min-width:1025px){.elementor-editor-element-edit{cursor:move}}.elementor-editor-container-settings,.elementor-editor-section-settings{height:24px;top:1px;left:50%;transform:translateX(-50%) translateY(-100%);background-color:var(--primary-color);border-radius:5px 5px 0 0;box-shadow:0 -2px 8px rgba(0,0,0,.05)}.elementor-editor-container-settings i.eicon-handle,.elementor-editor-section-settings i.eicon-handle{font-size:16px}.elementor-editor-container-settings .elementor-editor-element-setting:hover,.elementor-editor-section-settings .elementor-editor-element-setting:hover{background-color:var(--secondary-color)}.elementor-editor-container-settings .elementor-editor-element-setting:first-child,.elementor-editor-section-settings .elementor-editor-element-setting:first-child{border-radius:5px 0 0 0}.elementor-editor-container-settings .elementor-editor-element-setting:first-child:before,.elementor-editor-section-settings .elementor-editor-element-setting:first-child:before{content:"";position:absolute;border-width:medium;top:2px;border-left:0 solid transparent;border-bottom:0 solid transparent;border-right:12px solid transparent;border-right-color:var(--primary-color);border-top:22px solid transparent;right:calc(100% - 1px)}.elementor-editor-container-settings .elementor-editor-element-setting:first-child:hover:before,.elementor-editor-section-settings .elementor-editor-element-setting:first-child:hover:before{border-right-color:var(--secondary-color)}.elementor-editor-container-settings .elementor-editor-element-setting:last-child,.elementor-editor-section-settings .elementor-editor-element-setting:last-child{border-radius:0 5px 0 0}.elementor-editor-container-settings .elementor-editor-element-setting:last-child:after,.elementor-editor-section-settings .elementor-editor-element-setting:last-child:after{content:"";position:absolute;border-width:medium;top:2px;border-left:12px solid transparent;border-left-color:var(--primary-color);border-bottom:0 solid transparent;border-right:0 solid transparent;border-top:22px solid transparent;left:calc(100% - 1px)}.elementor-editor-container-settings .elementor-editor-element-setting:last-child:hover:after,.elementor-editor-section-settings .elementor-editor-element-setting:last-child:hover:after{border-left-color:var(--secondary-color)}.e-handles-inside>.elementor-element-overlay>.elementor-editor-element-settings,.elementor-section--handles-inside>.elementor-element-overlay>.elementor-editor-element-settings{transform:translateX(-50%);border-radius:0 0 5px 5px}.e-handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:first-child,.elementor-section--handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:first-child{border-radius:0 0 0 5px}.e-handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:first-child:before,.elementor-section--handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:first-child:before{top:0;border-width:0 12px 22px 0}.e-handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:last-child,.elementor-section--handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:last-child{border-radius:0 0 5px 0}.e-handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:last-child:after,.elementor-section--handles-inside>.elementor-element-overlay>.elementor-editor-element-settings .elementor-editor-element-setting:last-child:after{top:0;border-width:0 0 22px 12px}.elementor-editor-column-settings{top:-1px;left:-1px;border-radius:0 0 3px 0;overflow:hidden}.elementor-editor-column-settings .elementor-editor-element-setting{background-color:#495157}.elementor-editor-column-settings .elementor-editor-element-setting:not(:hover){background-image:linear-gradient(180deg,#6d7882,#556068)}.elementor-editor-widget-settings{z-index:2;top:-1px;right:-1px;flex-direction:row-reverse;border-radius:0 0 0 3px;overflow:hidden}.elementor-editor-widget-settings .elementor-editor-element-setting{background-color:#10bcf2}.elementor-editor-widget-settings .elementor-editor-element-setting:not(:hover){background-image:linear-gradient(0deg,#41c9f4,#71d7f7)}.elementor-empty-view{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1}.elementor-first-add{text-align:center;border:1px dashed #d5dadf;display:flex;height:100%;width:100%;position:absolute;align-items:center;justify-content:center}.elementor-first-add .elementor-icon{font-size:19px;color:#a4afb7;cursor:pointer}.elementor-sortable-helper{position:absolute;border-radius:3px;background-color:#fff;text-align:center;color:#556068;box-shadow:0 2px 6px rgba(0,0,0,.2);cursor:move}.elementor-sortable-helper .icon{font-size:28px;padding-top:15px;line-height:1}.elementor-sortable-helper .elementor-element-title-wrapper{display:table;width:100%}.elementor-sortable-helper .title{font-size:11px;font-family:Arial,Helvetica,sans-serif;font-weight:400;font-style:normal;display:table-cell;vertical-align:middle;height:40px}.elementor-editor-content-only .elementor-column.elementor-element-editable>.elementor-element-overlay:after,.elementor-editor-content-only .elementor-column:hover>.elementor-element-overlay:after,.elementor-editor-content-only .elementor-column>.elementor-element-overlay,.elementor-editor-content-only .elementor-column>.elementor-element-overlay:after,.elementor-editor-content-only .elementor-first-add,.elementor-editor-content-only .elementor-section.elementor-element-editable>.elementor-element-overlay:after,.elementor-editor-content-only .elementor-section:hover>.elementor-element-overlay:after,.elementor-editor-content-only .elementor-section>.elementor-element-overlay,.elementor-editor-content-only .elementor-section>.elementor-element-overlay:after{display:none}@media (min-width:1025px){.elementor-editor-content-only .elementor-editor-element-edit{cursor:pointer}}.elementor-sortable-placeholder:not(.elementor-column-placeholder){background-color:#71d7f7;animation-duration:.25s;opacity:.9;width:100%;align-self:stretch}.e-con .elementor-first-add .elementor-sortable-placeholder:not(.elementor-column-placeholder){align-self:center}.e-swappable--active>.elementor-sortable-placeholder:not(.elementor-column-placeholder){display:none}.elementor-section-placeholder{height:40px;animation-name:placeholder-section}.elementor-column-placeholder{position:relative}.elementor-column-placeholder:after,.elementor-column-placeholder:before{content:"";position:absolute;top:10px;bottom:10px;right:10px;left:10px}.elementor-column-placeholder:before{border:1px solid #6d7882}.elementor-column-placeholder:after{border:1px dashed #fff}.elementor-widget-placeholder{height:10px;animation-name:placeholder-widget}.elementor-draggable-over:not([data-dragged-element=section]):not([data-dragged-is-inner=true])>.elementor-empty-view>.elementor-first-add:after,.elementor-first-add.elementor-html5dnd-current-element:after{content:"";background-color:#71d7f7;transition-timing-function:ease-out;opacity:.9;height:10px;animation:placeholder-widget .5s;width:100%}.e-con .elementor-draggable-over:not([data-dragged-element=section]):not([data-dragged-is-inner=true])>.elementor-empty-view>.elementor-first-add:after,.e-con .elementor-first-add.elementor-html5dnd-current-element:after,.elementor-draggable-over:not([data-dragged-element=section]):not([data-dragged-is-inner=true])>.elementor-empty-view>.elementor-first-add .elementor-icon,.elementor-draggable-over[data-dragged-element=section][data-dragged-is-inner=true] .elementor-inner-column .elementor-sortable-placeholder,.elementor-first-add.elementor-html5dnd-current-element .elementor-icon{display:none}.elementor-add-section{all:initial;display:flex;max-width:1160px;position:relative;margin-inline:auto}.elementor-add-section:not(.elementor-dragging-on-child) .elementor-add-section-inner{border:2px dashed #d5dadf;background-color:hsla(0,0%,100%,.5)}.elementor-add-section.elementor-dragging-on-child .elementor-add-section-inner{border:3px dashed #71d7f7}.elementor-add-section[data-view=choose-action] .e-view:not(.elementor-add-new-section),.elementor-add-section[data-view=select-container-preset] .e-view:not(.e-con-select-preset),.elementor-add-section[data-view=select-preset] .e-view:not(.elementor-select-preset){display:none}.elementor-add-section-inner{text-align:center;margin:20px;padding:40px 0;flex-grow:1}.elementor-add-new-section{display:inline-block}.elementor-add-new-section .elementor-add-section-area-button{display:inline-flex;align-items:center;justify-content:center;height:40px;width:40px;color:#fff;font-size:16px;border-radius:50%;transition:all .3s;cursor:pointer}.elementor-add-new-section .elementor-add-section-area-button:hover{opacity:.85;box-shadow:0 0 2px rgba(0,0,0,.12),0 2px 2px rgba(0,0,0,.2)}.elementor-add-new-section .elementor-add-section-area-button:active{box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.1)}.elementor-add-new-section .elementor-add-section-button{background-color:#93003c;-webkit-margin-start:5px;margin-inline-start:5px}.elementor-add-new-section .elementor-add-template-button{background-color:#6d7882;margin-left:5px}.elementor-add-section-drag-title{font-family:Arial,Helvetica,sans-serif;font-size:13px;font-weight:400;font-style:italic;line-height:1;color:#556068;margin-top:15px}.elementor-add-section-close{position:absolute;right:40px;top:40px;font-size:20px;cursor:pointer;line-height:1;color:#d5dadf}.elementor-add-section-close:hover{color:#6d7882}.elementor-select-preset-title{font-family:Arial,Helvetica,sans-serif;font-size:13px;font-weight:500;font-style:normal;text-transform:uppercase;color:#556068}.elementor-select-preset-list{list-style:none;padding:0 25px;margin:20px auto 0;overflow:hidden;max-width:700px}.elementor-select-preset-list .elementor-preset{cursor:pointer;margin:0;padding:10px;float:left;max-width:33.333%}.elementor-select-preset-list .elementor-preset:hover path,.elementor-select-preset-list .elementor-preset:hover rect{fill:#6d7882}.elementor-select-preset-list .elementor-preset:not(:hover) path,.elementor-select-preset-list .elementor-preset:not(:hover) rect{fill:#d5dadf}.elementor-select-preset-list .elementor-preset .e-preset--container{position:relative;display:flex}.elementor-select-preset-list .elementor-preset .e-preset--container:before{content:var(--text);font-family:Roboto,Arial,Helvetica,Verdana,sans-serif;font-size:13px;font-weight:500;position:absolute;left:50%;top:50%;color:#fff;transform:translate(-50%,-50%)}.elementor-select-preset-list .elementor-preset svg{height:50px;width:100%}#elementor-add-new-section{margin:60px auto}#elementor-add-new-section[data-view=choose-action] .elementor-add-section-close{display:none}.elementor-add-section-inline{margin:10px auto;width:100%}.elementor-column-percents-tooltip{position:absolute;display:none;pointer-events:none;top:50%;transform:translateY(-50%);color:#fff;font-size:10px;background-color:#556068;width:40px;padding:3.5px 0;text-align:center;z-index:1;line-height:1}.elementor-column-percents-tooltip:after{content:"";position:absolute;width:0;height:0;border:8.5px solid transparent;top:0}.elementor-column-percents-tooltip[data-side=left]{border-radius:3px 0 0 3px;right:15px}.elementor-column-percents-tooltip[data-side=left]:after{left:100%;border-left-color:#556068;border-right-width:0}.elementor-column-percents-tooltip[data-side=right]{border-radius:0 3px 3px 0;left:15px}.elementor-column-percents-tooltip[data-side=right]:after{right:100%;border-right-color:#556068;border-left-width:0}.elementor-editor-preview .elementor-add-section,.elementor-editor-preview .elementor-add-section-inline,.elementor-editor-preview .elementor-element-overlay,.elementor-editor-preview .elementor-empty,.elementor-editor-preview .elementor-empty-view,.elementor-editor-preview .elementor-widget-empty{display:none}.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen{display:inherit;background:repeating-linear-gradient(125deg,rgba(0,0,0,.05),rgba(0,0,0,.05) 1px,transparent 2px,transparent 9px);border:1px solid rgba(0,0,0,.02)}.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop.e-con>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop.elementor-section>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop.e-con>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop.elementor-section>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile.e-con>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile.elementor-section>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra.e-con>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra.elementor-section>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet.e-con>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet.elementor-section>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra.e-con>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra.elementor-section>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen.e-con>.elementor-element-overlay,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen.elementor-section>.elementor-element-overlay{background-color:#d5dadf;mix-blend-mode:color}.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop.e-con:before,.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop.elementor-section:before,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop.e-con:before,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop.elementor-section:before,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile.e-con:before,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile.elementor-section:before,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra.e-con:before,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra.elementor-section:before,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet.e-con:before,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet.elementor-section:before,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra.e-con:before,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra.elementor-section:before,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen.e-con:before,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen.elementor-section:before{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;background-color:hsla(0,0%,100%,.6);z-index:9997}.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop.e-con,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop.e-con,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile.e-con,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra.e-con,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet.e-con,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra.e-con,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen.e-con{display:var(--display)}.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop.elementor-inner-section .elementor-container,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop.elementor-inner-section .elementor-container,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile.elementor-inner-section .elementor-container,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra.elementor-inner-section .elementor-container,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet.elementor-inner-section .elementor-container,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra.elementor-inner-section .elementor-container,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen.elementor-inner-section .elementor-container{width:100%}.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop>.elementor-widget-container,.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop>.elementor-widget-wrap,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop>.elementor-widget-container,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop>.elementor-widget-wrap,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile>.elementor-widget-container,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile>.elementor-widget-wrap,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra>.elementor-widget-container,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra>.elementor-widget-wrap,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet>.elementor-widget-container,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet>.elementor-widget-wrap,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra>.elementor-widget-container,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra>.elementor-widget-wrap,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen>.elementor-widget-container,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen>.elementor-widget-wrap{filter:opacity(.4) saturate(0)}.e-preview--show-hidden-elements[data-elementor-device-mode=desktop] .elementor-edit-area-active .elementor-hidden-desktop.elementor-edit-hidden,.e-preview--show-hidden-elements[data-elementor-device-mode=laptop] .elementor-edit-area-active .elementor-hidden-laptop.elementor-edit-hidden,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile] .elementor-edit-area-active .elementor-hidden-mobile.elementor-edit-hidden,.e-preview--show-hidden-elements[data-elementor-device-mode=mobile_extra] .elementor-edit-area-active .elementor-hidden-mobile_extra.elementor-edit-hidden,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet] .elementor-edit-area-active .elementor-hidden-tablet.elementor-edit-hidden,.e-preview--show-hidden-elements[data-elementor-device-mode=tablet_extra] .elementor-edit-area-active .elementor-hidden-tablet_extra.elementor-edit-hidden,.e-preview--show-hidden-elements[data-elementor-device-mode=widescreen] .elementor-edit-area-active .elementor-hidden-widescreen.elementor-edit-hidden{display:none}.e-con-select-preset{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:25px}.e-con-select-preset[data-view=choose-preset]>:not(.e-con-select-preset__inner),.e-con-select-preset[data-view=drop-area]>:not(.elementor-first-add){display:none}.e-con-select-preset__title{font-family:Roboto,Arial,Helvetica,Verdana,sans-serif;font-size:13px;font-weight:500;text-transform:uppercase;color:#556068}.e-con-select-preset__list{display:flex;gap:20px;align-items:center;justify-content:center;flex-wrap:wrap;max-width:650px}.e-con-select-preset__list .e-con-preset{cursor:pointer;flex-basis:90px}.e-con-select-preset__list .e-con-preset svg{width:100%;height:auto}.e-con-select-preset__list .e-con-preset path{fill:#fff}.e-con-select-preset__list .e-con-preset rect{fill:#d5dadf;transition:all .3s}.e-con-select-preset__list .e-con-preset:hover rect{fill:#6d7882}.e-con.e-con--column .ui-resizable-e{right:0}.e-con.e-con--column .ui-resizable-w{left:0} Non Gamstop Casinos – Paisa Paisagismo http://paisa.com.br Marilia (SP) Mon, 27 Apr 2026 21:14:45 +0000 pt-BR hourly 1 https://wordpress.org/?v=4.9.13 http://paisa.com.br/wp-content/uploads/2018/03/cropped-favcon-2-32x32.jpg Non Gamstop Casinos – Paisa Paisagismo http://paisa.com.br 32 32 70+ Uk Casinos Not Really On Gamstop » Best Sites Associated With June 2025 http://paisa.com.br/non-gamstop-casinos/70-uk-casinos-not-really-on-gamstop-best-sites-associated-with-june-2025/ Thu, 12 Jun 2025 09:08:51 +0000 http://paisa.com.br/?p=3126 70+ Uk Casinos Not Really On Gamstop » Best Sites Associated With June 2025

    Our research shows that this is a casino with a few of the very best slots not about GamStop. MyStake offers around 5, 1000 casino games, like top slots from EvoPlay, BetSoft, plus Yggdrasil. The listing of casinos the fact that are not signed up under GamStop typically coincides with low GamCare casinos. GamCare is actually a leading supplier of support regarding people who are suffering from problem gambling behaviours.

    It also houses 60+ reputable game companies, including NetEnt, Festón, EvoPlay, and BetSoft, and you could cash out your own winnings within 48 hours. From our own observations, this internet casino not on GamStop delivers maximum entertainment through its substantial library of above 3, 000 slot machine games and other game titles. It has a lot of innovative and exclusive content material and hosts games from top computer software providers, including BetSoft, NetEnt, Microgaming, EvoPlay, and BGaming.

    Compared additional casinos with out GamStop, Mystake operator posseses an excellent selection of promotions. They include a welcome bonus, 10% loyalty cashback, crypto deposit bonuses, free spins for delivering feedback, and many other options. Based on our first hand experience, PlayHub shares many advantages together with other sites certainly not covered by GamStop. It accepts Amex credit card bills and has a VERY IMPORTANT PERSONEL programme that may increase your monthly withdrawal limits through £5, 000 around £1, 000, 500. We also adore that you could claim 4% for you to 24% cashback through the casino’s devotion program. If you happen to be wondering how in order to cancel GamStop, that is impossible.

    Faq On Gaming Sites Not Upon Gamstop

    Usually, the placed amount is then added to your mobile phone bill or used from your own, which often means the assistance is facilitated because of your network provider. However, in most instances, it works might be UKGC-licensed sites. Unlike other top on-line casinos for non-GamStop gaming that present about 50 no cost spins usually, VeryWell Casino offers upwards to 725 free spins for depositing.

    Available In Order To British Players On Gamstop

    Instead of obtaining UKGC certification, like casino sites operate under independent license authorities. This allows those to provide premium quality services to British isles players on a new legal basis, and to avoid many of the most tedious UK requirements at the identical time. For an actual casino experience from the safety of your household, you need in real time dealer gambling sites not on GamStop. They are gorgeous, immersive, and offer you a complicated gaming expertise. We did each of our best to stage you for the internet sites without GamStop that will have the greatest live roulette, blackjack online, baccarat, and some other live dealer game titles.

    Rolletto Casino is definitely your go-to agent if you are looking for some sort of non GamStop playing experience. After providing this casino a new try, we have been particularly impressed using its collection of slots, mini-games, and live casino options. You can try your luck in 200+ Megaway and 180+ lottery jackpot slots, and claim an up to be able to £1, 500 delightful bonus and other advertisements. Take your time new casino not on gamstop skimming through the no GamStop online casinos we have.

    Sports Betting

    While understanding how to get around GamStop is a good idea in some situations, in other circumstances, it can do you more hurt than good. If you are a challenge gambler, you shouldn’t try to circumvent GamStop. Instead, you should let the time period pass without taking part in at sites the fact that accept GamStop players from the BRITISH. There are several terms that UK players google some as casinos certainly not on GameStop or perhaps casinos not upon Gamblock. They are common misspellings for the term “non-GamStop, ” which is this correct one. The essential meaning involving referring to self-exclusion for British people remains the exact same, though.

    Non-gamstop Means Independence From Ukgc

    In fact, you’ll believe it is on almost just about every set of casinos not really on GameStop well-liked between UK customers for 2025. After away from LSE, he started off writing articles about typically the online gambling sector and problem gaming as one part of it. After years of functioning, he’s become among the authors on this site. Are a person tired of not being able to play following your Gamstop expiration? Then these playing destinations are just what you’re looking regarding.

    They likewise have fast withdrawals along with other perks of which you will discover out once a person start using sites. In addition to that, you could install a dedicated mobile app to say a no-deposit reward. PH Casino is probably the boldest online casinos without GamStop limits when it occurs to live supplier games. Namely, should you play live baccarat and live roulette games, you can win up for you to £100, 000. In addition, the site gives weekly promo rules that can allow you to get free cash and even free spins.

    Mystake Casino

    No, you will find little UK-regulated casinos not on this GamStop scheme. All UKGC licensed casinos are on GamStop, according to the Gambling Commission’s guidelines. Due in order to strict UKGC suggestions, once you hold a good UKGC license you are obliged to be able to be a fellow member of GamStop. Offshore casinos operate in jurisdictions outside the Combined Kingdom. When we all talk about the casino with low GamStop registration, it means that it is certainly not licensed by UKGC and does not really collaborate with GamStop. The essential point to note is that only internet casinos that collaborate along with GamStop have the to use their self-exclusion database.

    No Casino App For Ios Users (in-browser Only)

    When considering local British strategies of depositing money, Boku casinos not necessarily on GamStop is definitely probably the subsequent most popular payment option. Boku is definitely a type of mobile transaction which is popular about UK casino internet sites. PayPal is typically the privilege in the UKGC casino sites, in addition to little to not any independent casinos enable PayPal depositing in addition to withdrawal. For many casino players, the idea is easier to find a suitable settlement alternative and stay with it instead.

    Choose Gamstop-free Casino From Each Of Our List

    Bonuses will be always in high demand, especially the no-deposit features. They allow you to explore casino games without too much risk or commitment on the part. This will be not to say that free spins will also be an excellent means to try out there different slots. Our research involves identifying sites that provide free spins without deposit not on GamStop and presenting you the best types most notable. There are no limitations inside terms of activities at non GamStop online casinos.

    Perhaps probably the most distinct characteristic in the slot websites which are not on GamStop is that they host hundreds and hundreds of games to be able to explore. They use reputable software companies recognized worldwide to offer innovative titles that guarantee entertainment to be able to British players. More options mean assortment, giving you even more ways to try out, earn, and have entertaining. Many British people who want in order to play without self-exclusion look for the pay by mobile phone casinos not about GamStop. Pay-by-Phone is surely an unique feature that enables you to deposit at a great internet casino with the mobile phone costs.

    List Of The Best Non-gamstop Casinos For British Players

    However, this privilege connected only to the highest members of typically the platform’s VIP software. On the other hand, which has a £10 deposit, all players can take benefit from the low 15x rollover requirement. The sleek design quickly draws attention plus plays a part in the general experience. Flexible filter systems and categories make it easy for you to find games of which suit your taste. PlayHub also were able to impress us with its community section, which usually brings social elements into gaming. The number one factor that determines regardless of whether a site helps make it to the list is staying an UK casino not on GamStop.

    Playhub Casino

    • There happen to be no limitations in terms of activities at non GamStop online casinos.
    • Although they may have internal self-exclusion tools, this kind of is dangerous regarding consumers who will be at risk of chasing losses and overspending.
    • Many British people who want to be able to play without self-exclusion look for this pay by mobile phone casinos not in GamStop.
    • Select the game you searching for, and search for great bargains and bonuses since you would any kind of other casino.
    • It is essential to realize what the casino site expects regarding you and just what they is able to do with regard to you.

    We can say that for many on the internet casino players, the particular diversity of activities and, specifically, video poker machines, is the priority. To help you make an even more informed decision think about a site in order to play at, many of us pay close attention to non-GamStop video poker machines for online gambling since part of our analysis. The best non GamStop internet casinos are MyStake On line casino and incredibly Well On line casino. These casinos give a large variety of gambling video games, have amazing special offers and bonuses on slots and the wide range involving payment options.

    • When we talk about a casino with not GamStop registration, the idea means that it must be certainly not licensed by the UKGC and does not collaborate with GamStop.
    • If you are a challenge gambler, you shouldn’t try to bypass GamStop.
    • While learning to obtain around GamStop is a good idea in some situations, in other situations, it can perform you more damage than good.
    • The site gives you access to above 5, 000 on-line games not upon GamStop.
    • The essential stage to note will be that only gambling dens that collaborate with GamStop have typically the directly to use their self-exclusion database.
    • Playing at the particular casinos not obstructed by GamStop does not imply that you perform not can access equipment that allow you to handle your gambling habits.
    • PlayHub also were able to impress us featuring its community section, which often brings social components into gaming.

    Choose exactly what tickles your luxury, whether it is slots, jackpots or perhaps live seller gaming. According to be able to our direct encounter, BetSwagger compares effectively to other non-GamStop casinos. It features 15x wagering requirements, typically the minimum deposit is definitely low at £10, and you can easily claim around £1, 000 total while your deposit benefit. So, If a person want to discover a casino online that is not on GamStop and possesses generous promotions, then look no further more. MyStake Casino is yet another choice within this list the fact that you might want to check out.

    Do Non Gamstop Casino Sites Accept Uk Players?

    Although they have got internal self-exclusion tools, this specific is dangerous for consumers who are usually vulnerable to chasing loss and overspending. If you would like sports wagering sites not in GamStop, you have appear to the right place. Several of the casinos about our list have a sports betting segment, too, although anyone might get enthusiastic about the dedicated sportsbooks as well. It is vital to understand what the gaming site expects of you and what they can perform regarding you. Sometimes you could make an error in the spelling of your email address when trying to quickly claim the bonus. Take your own time to guarantee that all the info you provide is correct.

    Online Poker

    In addition for you to no GamStop bar, GoldenBet comes with an available £10 minimum put in. While analysing this kind of casino, we were likewise pleased to discover no transaction charges on both debris or withdrawals. If you like slots and even have a thrilling time along with lotteries, then right now there is a possibility that playing about online bingo providers not in GamStop could also be your thing. Visit online bingo rooms, buy seat tickets, and win funds – nice and even easy. It shouldn’t take long for you to clearly understand precisely how things operate in the chosen non GamStop casino.

    BetSwagger Casino is some sort of great method to play not on GamStop that possesses all the top top features of a good on the internet casino. It offers an excellent number of 3D slots, along with slots with mythology, luck, animal, fruit, and adventure themes. In addition, best games are obtainable in demo function, so you can easily test all of them before producing a deposit.

    Features Associated With Non Gamstop Internet Casinos You Should Know About

    You’ll also be able to make a minimum deposit of £10 making use of Amex. Yes, right now there are plenty involving methods to restrict gambling at not Gamstop casinos. Also, you can make contact with the support team of any casino shown on our web-site and ask in order to self-exclude yourself from the particular operator. For an online online casino to fairly offer services these organizations must have some type of self-exclusion system. It is ethical practice to enable gamblers the option to self-exclude need to they feel the particular need.

    We are generally not linked to any gambling operator and don’t provide information (articles) for illegal uses. It’s the responsibility of each visitor in order to check the laws and gambling rules documents in the state. The brands outlined here are self-employed casino sites, which often means they do not have an UKGC license and are not on the GamStop databases.

    If you have excluded oneself from playing with a GamStop casino, you cannot participate in at any additional site that runs under GamStop. Another point to consider will be that casino applications not on GamStop cannot be set up from App Retail outlet. This is not all doom in addition to gloom for iOS users, as many of these casinos run great on mobile phones. However, you may need to check out the chosen casino’s web-site from your mobile phone browser instead of simply launching its app. Casino websites not registered together with Gamstop aren’t the best option regarding those who fought with problem gambling in the recent.

    The site gives you access to around 5, 000 on the web games not about GamStop. Browsing the different categories permits you to explore slots, table games, video bingo, fetta, scratch cards, video poker and some other options. You may claim multiple offers such as procuring deals, deposit bonuses, and free spins.

    Select the overall game you searching for, and research for great bargains and bonuses while you would any kind of other casino. Scan through the testimonials to find perspective on your choices. It is fair in order to say that web sites with online slot machine games not on GamStop tend to target read more about that 1 type of game over other formats.

    For example, you will usually find 1000s of slots but a lot smaller selection of live dealer game titles. Offshore platforms typically hold licenses coming from Panama or Curacao. When casinos hold other licenses that will are not in the UK, they may cherry-pick what limitations they want to implement.

    William Terry is the writer and one of NonStopCasino founders. Being the Doctor of Laws, he knows most aspects of the tendu system in the particular UK. Since 2014, when the Casino Act had recently been released, Will features graduated through the University or college of Oxfordand dived into the UK gambling industry.

    ]]>
    70+ Uk Casinos Not Necessarily On Gamstop » Best Sites Associated With June 2025 http://paisa.com.br/non-gamstop-casinos/70-uk-casinos-not-necessarily-on-gamstop-best-sites-associated-with-june-2025/ Thu, 12 Jun 2025 08:59:29 +0000 http://paisa.com.br/?p=3124 70+ Uk Casinos Not Necessarily On Gamstop » Best Sites Associated With June 2025

    Your previous gambling experience doesn’t worry them, and they also let you roam their many promotions openly. Several casinos which are not on Gamstop let you gamble after your current Gamstop restriction. Hustles Casino is the platform that, as opposed to other gaming internet sites that are not on GamStop, offers high payout limits and low bonus wagering demands. In short, Hustles Casino should get your number-one alternative if you’re seeking non gamstop uk casino for a gambling establishment with no GamStop intended for UK players that will allows you in order to cash-out up for you to £200, 000.

    No Want To Stop Gamstop To Play

    But it may be hazardous to utilize casinos not necessarily on Gamban since they are way too unrestricted for people dealing with habit. Playing at this casinos not blocked by GamStop does not imply that you carry out not get access to resources that allow you to control your gambling habits. Most casino web sites have local self-exclusion options which might be temporary and easily maintained.

    • More options mean selection, giving you extra ways to try out, win, and have enjoyment.
    • PayPal is typically the privilege of the UKGC casino sites, plus little to zero independent casinos let PayPal depositing and withdrawal.
    • It has a lot of fresh and exclusive information and hosts video games from top software program providers, including BetSoft, NetEnt, Microgaming, EvoPlay, and BGaming.
    • You’ll end up being able to make a minimum first deposit of £10 using Amex.
    • It is not really really the only option regarding getting advice plus support for gaming addiction.

    No, you will find no more UK-regulated casinos not on this GamStop scheme. All UKGC licensed gambling dens are on GamStop, based on the Gambling Commission’s guidelines. Due to strict UKGC rules, once you hold an UKGC license anyone are obliged to be able to be a member of GamStop. Offshore casinos operate in jurisdictions outside the Unified Kingdom. When we talk about a casino with no GamStop registration, this means that it must be not necessarily licensed with the UKGC and does not really collaborate with GamStop. The essential stage to note will be that only gambling dens that collaborate along with GamStop have typically the to use the self-exclusion database.

    Slots Not About Gamstop By Trustworthy Providers

    If you could have excluded yourself from playing with a GamStop online casino, you cannot perform at any other site that functions under GamStop. Another point out consider will be that casino applications not on GamStop cannot be mounted from App Retail outlet. This is not all doom in addition to gloom for iOS users, as much involving these casinos work great on mobile devices. However, you will need to check out the chosen casino’s site from your mobile browser instead associated with simply launching the app. Casino websites not registered with Gamstop aren’t this best option for those who battled with problem playing in the history.

    Ranking Sites Using Casino Games Not Necessarily On Gamstop

    The site gives you access to above 5, 000 online games not about GamStop. Browsing the different categories enables you to explore slots, table games, video bingo, fetta, scratch cards, video poker and other options. You can easily claim multiple special offers such as cashback deals, deposit bonuses, and free moves.

    Non-gamstop Means Self-reliance From Ukgc

    So, these casinos have realized ways to recognize British players all-around the laws and even restrictions. In the beginning, we included the main ranking criteria that all of us use to cherry-pick casino sites. However, there is even more to understand this features of video gaming sites not upon GamStop. So far, we have merely covered the UK-friendly casinos not about GamStop. If you’re enthusiastic about other on-line gambling opportunities, sense free to check the options below without worrying about GamStop anymore.

    Popular Options To Non Gamstop Slots

    • Based on our first hand experience, PlayHub gives many advantages using other sites certainly not covered by GamStop.
    • Offshore platforms normally hold licenses from Panama or Curacao.
    • Usually, the deposited amount is next included in your cell phone bill or used from your credit, which in turn means the service is facilitated from your network provider.
    • So, If you want to find a casino online that is not on GamStop and has generous promotions, next look no even more.
    • Sometimes you may make a mistake in the spelling of your e mail when trying to be able to quickly claim the bonus.

    Operating outside of it will make it difficult to acquire again to GamStop casinos. Generous bonuses, capacity to use credit card payment and game titles not found about UKGC sites. Want to combine the very best of both worlds with slots in addition to bingo in 1 game? While an individual can find it at online gambling dens, there are furthermore some dedicated Slingo sites without GamStop, which we advise you try.

    Directory Of The Best Non-gamstop Casinos For Uk Players

    Our research shows the fact that this is a casino with a few of the very best slots not about GamStop. MyStake provides around 5, 000 casino games, like top slots through EvoPlay, BetSoft, in addition to Yggdrasil. The checklist of casinos the fact that are not signed up under GamStop usually coincides with non GamCare casinos. GamCare can be a leading company of support intended for people who are suffering from problem gambling behaviors.

    Features Regarding Non Gamstop Internet Casinos You Should Realize About

    While learning how to acquire around GamStop is a good idea in some circumstances, in other instances, it can perform you more injury than good. If you are a challenge gambler, you shouldn’t try to circumvent GamStop. Instead, you should area period pass without playing at sites of which accept GamStop people from the UNITED KINGDOM. There are a number of terms that GREAT BRITAIN players google like as casinos not really on GameStop or casinos not in Gamblock. They are common misspellings for the term “non-GamStop, ” which is typically the correct one. The essential meaning associated with referring to self-exclusion for British people remains the exact same, though.

    Are There Any Differences Between Casino Websites And Slots Sites Not On Gamstop?

    For example, you can usually find a large number of slots but a much smaller selection regarding live dealer activities. Offshore platforms normally hold licenses coming from Panama or Curacao. When casinos keep other licenses the fact that are not from the UK, they could cherry-pick what limits they want to implement.

    Then pick one that when calculated resonates using what you are looking for throughout a gambling program. The choice can easily range from acquainted games to regardless of whether or not you discover their promotions suitable to your money needs. During our own tests, we discovered that the site has an active Curacao licence and even a great 100% welcome bonus.

    Besides, you could find operators the fact that allow you to be able to limit your deposit, session times, or perhaps loss amounts. There are many thrilling options with Tx Hold’em and Omaha cash games and even tournaments, so sense free to check out them all. FreshBet Casino is almost certainly one of the most googled casinos on our record.

    Read T&cs And Deposit Funds

    However, this privilege belongs only to the very best members of this platform’s VIP software. On the additional hand, with a £10 deposit, all people can take benefit from the low 15x rollover requirement. The sleek design instantly draws attention and even leads to the total experience. Flexible filtration systems and categories create it easy in order to find games of which suit your taste. PlayHub also was able to impress us featuring its community section, which brings social components into gaming. The number one element that determines no matter if a site helps make it to our list is being an UK casino not on GamStop.

    Choose what tickles your luxury, whether it be slots, jackpots or just live vendor gaming. According for you to our direct encounter, BetSwagger compares well to other non-GamStop casinos. It has 15x wagering requirements, the particular minimum deposit is low at £10, and you can claim up to £1, 000 total because your deposit bonus. So, If anyone want to look for a casino online that is not on GamStop and it has generous promotions, in that case look no more. MyStake Casino is yet another option within this list that you might wish to check out.

    Rolletto Casino is definitely your go-to user if you happen to be looking for a new non GamStop playing experience. After offering this casino a try, we had been particularly impressed using its selection of slots, mini-games, and friendly casino options. You can try your current fortune in 200+ Megaway and 180+ lottery jackpot slots, and assert an up to £1, 500 delightful bonus along with other advertisements. Take your time skimming through the no GamStop online gambling dens we have.

    Mystake Casino

    You’ll even be able to create a minimum first deposit of £10 making use of Amex. Yes, right now there are plenty involving methods to minimize gambling at low Gamstop casinos. Also, you can make contact with the support team of each casino listed on our web site and ask to self-exclude yourself through the particular operator. For an online gambling establishment to fairly provide services these organizations will need to have some form of self-exclusion programme. It is moral practice to allow gamblers the selection to self-exclude should they feel the particular need.

    Let’s consider a peek in the alternative gaming options that you have. If you desired to play at credit card internet casinos, then the changes for you to UKGC rules with regards to the credit greeting card ban might include caused you a fantastic deal of disappointment. Casinos that function without GamStop normally accept credit cards as a down payment method, so anyone can get back to your favourite repayment option.

    In fact, you’ll find it on almost just about every list of casinos not necessarily on GameStop well-known amid UK customers regarding 2025. After graduating from LSE, he began writing and submitting articles about this online gambling business and problem playing as one component of it. After years of operating, he’s become one of several authors on this site. Are an individual tired of not being able to play soon after your Gamstop departure? Then these casino destinations are exactly what you’re looking intended for.

    Do Non Gamstop Casino Sites Take Uk Players?

    BetSwagger Casino is the great way to enjoy not on GamStop that possesses all the top top features of a good on the internet casino. It offers an excellent number of 3D slots, along with slots with mythology, luck, animal, berry, and adventure styles. In addition, best games are accessible in demo function, so you may test all regarding them before doing down payment.

    We are certainly not tied up to any gambling operator and don’t provide information (articles) for illegal purposes. It’s the responsibility of every visitor for you to check the rules and gambling regulation documents inside the state. The brands outlined here are self-employed casino sites, which often means they cannot possess an UKGC license and are not necessarily on the GamStop database.

    To help you out a bit, many of us have develop a record of such options. Very Well Casino is similar to be able to other casino internet sites not registered together with GamStop when considering game selection. You’ll find 500+ slot games, table activities, and live supplier games. However, exactly what makes it endure out from the competition is their no deposit free of charge spin bonuses. NonStopCasino. org is a good independent affiliate site created in 2019. Our experts possess a legal backdrop and 5+ a lot of experience in this online gambling market.

    It is not really the only real option for getting advice and support for gaming addiction. But, if you are a regular on the non-GamStop sites, you will likely not be able for you to use the services of this specific enterprise. A crucial factor when choosing a web based casino is certainly not being forced to stop GamStop so as to play from them. Getting fixed up with GamStop is a part of cake yet getting off the idea is a trouble. Good that generally there is you should not be anxious about all this kind of when you can actually pick virtually any casino site through this guide plus simply enjoy your own favourite games. Fortune Clock Casino is actually a well-known operator amid British punters.

    ]]>