function loadBillingLength(n){var e=window[n+"_intervals"];if(e){for(var s=jQuery("#"+n+"_unit").val(),i=e[s].min,c=e[s].max,r=jQuery("#"+n+"_length"),a=r.val(),t="",o=i;o<=c;o++){t+=""}r.html(t)}}function cancel_subscription(n){confirm(gaddon_payment_strings.subscriptionCancelWarning)&&(jQuery("#subscription_cancel_spinner").show(),jQuery("#cancelsub").prop("disabled",!0),jQuery.post(ajaxurl,{action:"gaddon_cancel_subscription",entry_id:n,gaddon_cancel_subscription:gaddon_payment_strings.subscriptionCancelNonce},function(n){jQuery("#subscription_cancel_spinner").hide(),!0===n.success?(jQuery("#gform_payment_status").html(gaddon_payment_strings.subscriptionCanceled),jQuery("#cancelsub").hide()):(jQuery("#cancelsub").prop("disabled",!1),!1===n.success&&alert(gaddon_payment_strings.subscriptionError))}))}/*! elementor-pro - v3.13.2 - 22-05-2023 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["woocommerce-checkout-page"],{ /***/ "../modules/woocommerce/assets/js/frontend/handlers/base.js": /*!******************************************************************!*\ !*** ../modules/woocommerce/assets/js/frontend/handlers/base.js ***! \******************************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; class Base extends elementorModules.frontend.handlers.Base { getDefaultSettings() { return { selectors: { stickyRightColumn: '.e-sticky-right-column' }, classes: { stickyRightColumnActive: 'e-sticky-right-column--active' } }; } getDefaultElements() { const selectors = this.getSettings('selectors'); return { $stickyRightColumn: this.$element.find(selectors.stickyRightColumn) }; } bindEvents() { // Add our wrapper class around the select2 whenever it is opened. elementorFrontend.elements.$document.on('select2:open', event => { this.addSelect2Wrapper(event); }); } addSelect2Wrapper(event) { // The select element is recaptured every time because the markup can refresh const selectElement = jQuery(event.target).data('select2'); if (selectElement.$dropdown) { selectElement.$dropdown.addClass('e-woo-select2-wrapper'); } } isStickyRightColumnActive() { const classes = this.getSettings('classes'); return this.elements.$stickyRightColumn.hasClass(classes.stickyRightColumnActive); } activateStickyRightColumn() { const elementSettings = this.getElementSettings(), $wpAdminBar = elementorFrontend.elements.$wpAdminBar, classes = this.getSettings('classes'); let stickyOptionsOffset = elementSettings.sticky_right_column_offset || 0; if ($wpAdminBar.length && 'fixed' === $wpAdminBar.css('position')) { stickyOptionsOffset += $wpAdminBar.height(); } if ('yes' === this.getElementSettings('sticky_right_column')) { this.elements.$stickyRightColumn.addClass(classes.stickyRightColumnActive); this.elements.$stickyRightColumn.css('top', stickyOptionsOffset + 'px'); } } deactivateStickyRightColumn() { if (!this.isStickyRightColumnActive()) { return; } const classes = this.getSettings('classes'); this.elements.$stickyRightColumn.removeClass(classes.stickyRightColumnActive); } /** * Activates the sticky column * * @return {void} */ toggleStickyRightColumn() { if (!this.getElementSettings('sticky_right_column')) { this.deactivateStickyRightColumn(); return; } if (!this.isStickyRightColumnActive()) { this.activateStickyRightColumn(); } } equalizeElementHeight($element) { if ($element.length) { $element.removeAttr('style'); // First remove the custom height we added so that the new height can be re-calculated according to the content let maxHeight = 0; $element.each((index, element) => { maxHeight = Math.max(maxHeight, element.offsetHeight); }); if (0 < maxHeight) { $element.css({ height: maxHeight + 'px' }); } } } /** * WooCommerce prints the Purchase Note separated from the product name by a border and padding. * In Elementor's Order Summary design, the product name and purchase note are displayed un-separated. * To achieve this design, it is necessary to access the Product Name line before the Purchase Note line to adjust * its padding. Since this cannot be achieved in CSS, it is done in this method. * * @param {Object} $element * * @return {void} */ removePaddingBetweenPurchaseNote($element) { if ($element) { $element.each((index, element) => { jQuery(element).prev().children('td').addClass('product-purchase-note-is-below'); }); } } /** * `elementorPageId` and `elementorWidgetId` are added to the url in the `_wp_http_referer` input which is then * received when WooCommerce does its cart and checkout ajax requests e.g `update_order_review` and `update_cart`. * These query strings are extracted from the url and used in our `load_widget_before_wc_ajax` method. */ updateWpReferers() { const selectors = this.getSettings('selectors'), wpHttpRefererInputs = this.$element.find(selectors.wpHttpRefererInputs), url = new URL(document.location); url.searchParams.set('elementorPageId', elementorFrontend.config.post.id); url.searchParams.set('elementorWidgetId', this.getID()); wpHttpRefererInputs.attr('value', url); } } exports["default"] = Base; /***/ }), /***/ "../modules/woocommerce/assets/js/frontend/handlers/checkout-page.js": /*!***************************************************************************!*\ !*** ../modules/woocommerce/assets/js/frontend/handlers/checkout-page.js ***! \***************************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _base = _interopRequireDefault(__webpack_require__(/*! ./base */ "../modules/woocommerce/assets/js/frontend/handlers/base.js")); class Checkout extends _base.default { getDefaultSettings() { const defaultSettings = super.getDefaultSettings(...arguments); return { selectors: { ...defaultSettings.selectors, container: '.elementor-widget-woocommerce-checkout-page', loginForm: '.e-woocommerce-login-anchor', loginSubmit: '.e-woocommerce-form-login-submit', loginSection: '.e-woocommerce-login-section', showCouponForm: '.e-show-coupon-form', couponSection: '.e-coupon-anchor', showLoginForm: '.e-show-login', applyCoupon: '.e-apply-coupon', checkoutForm: 'form.woocommerce-checkout', couponBox: '.e-coupon-box', address: 'address', wpHttpRefererInputs: '[name="_wp_http_referer"]' }, classes: defaultSettings.classes, ajaxUrl: elementorProFrontend.config.ajaxurl }; } getDefaultElements() { const selectors = this.getSettings('selectors'); return { ...super.getDefaultElements(...arguments), $container: this.$element.find(selectors.container), $loginForm: this.$element.find(selectors.loginForm), $showCouponForm: this.$element.find(selectors.showCouponForm), $couponSection: this.$element.find(selectors.couponSection), $showLoginForm: this.$element.find(selectors.showLoginForm), $applyCoupon: this.$element.find(selectors.applyCoupon), $loginSubmit: this.$element.find(selectors.loginSubmit), $couponBox: this.$element.find(selectors.couponBox), $checkoutForm: this.$element.find(selectors.checkoutForm), $loginSection: this.$element.find(selectors.loginSection), $address: this.$element.find(selectors.address) }; } bindEvents() { super.bindEvents(...arguments); this.elements.$showCouponForm.on('click', event => { event.preventDefault(); this.elements.$couponSection.slideToggle(); }); this.elements.$showLoginForm.on('click', event => { event.preventDefault(); this.elements.$loginForm.slideToggle(); }); this.elements.$applyCoupon.on('click', event => { event.preventDefault(); this.applyCoupon(); }); this.elements.$loginSubmit.on('click', event => { event.preventDefault(); this.loginUser(); }); elementorFrontend.elements.$body.on('updated_checkout', () => { this.applyPurchaseButtonHoverAnimation(); this.updateWpReferers(); }); } onInit() { super.onInit(...arguments); this.toggleStickyRightColumn(); this.updateWpReferers(); this.equalizeElementHeight(this.elements.$address); // Equalize
boxes height if (elementorFrontend.isEditMode()) { this.elements.$loginForm.show(); this.elements.$couponSection.show(); this.applyPurchaseButtonHoverAnimation(); } } onElementChange(propertyName) { if ('sticky_right_column' === propertyName) { this.toggleStickyRightColumn(); } } onDestroy() { super.onDestroy(...arguments); this.deactivateStickyRightColumn(); } applyPurchaseButtonHoverAnimation() { const purchaseButtonHoverAnimation = this.getElementSettings('purchase_button_hover_animation'); if (purchaseButtonHoverAnimation) { // This element is recaptured every time because the checkout markup can refresh jQuery('#place_order').addClass('elementor-animation-' + purchaseButtonHoverAnimation); } } applyCoupon() { // Wc_checkout_params is required to continue, ensure the object exists // eslint-disable-next-line camelcase if (!wc_checkout_params) { return; } this.startProcessing(this.elements.$couponBox); const data = { // eslint-disable-next-line camelcase security: wc_checkout_params.apply_coupon_nonce, coupon_code: this.elements.$couponBox.find('input[name="coupon_code"]').val() }; jQuery.ajax({ type: 'POST', // eslint-disable-next-line camelcase url: wc_checkout_params.wc_ajax_url.toString().replace('%%endpoint%%', 'apply_coupon'), context: this, data, success(code) { jQuery('.woocommerce-error, .woocommerce-message').remove(); this.elements.$couponBox.removeClass('processing').unblock(); if (code) { this.elements.$checkoutForm.before(code); this.elements.$couponSection.slideUp(); elementorFrontend.elements.$body.trigger('applied_coupon_in_checkout', [data.coupon_code]); elementorFrontend.elements.$body.trigger('update_checkout', { update_shipping_method: false }); } }, dataType: 'html' }); } loginUser() { this.startProcessing(this.elements.$loginSection); const data = { action: 'elementor_woocommerce_checkout_login_user', username: this.elements.$loginSection.find('input[name="username"]').val(), password: this.elements.$loginSection.find('input[name="password"]').val(), nonce: this.elements.$loginSection.find('input[name="woocommerce-login-nonce"]').val(), remember: this.elements.$loginSection.find('input#rememberme').prop('checked') }; jQuery.ajax({ type: 'POST', url: this.getSettings('ajaxUrl'), context: this, data, success(code) { code = JSON.parse(code); this.elements.$loginSection.removeClass('processing').unblock(); const messages = jQuery('.woocommerce-error, .woocommerce-message'); messages.remove(); if (code.logged_in) { location.reload(); } else { this.elements.$checkoutForm.before(code.message); elementorFrontend.elements.$body.trigger('checkout_error', [code.message]); } } }); } startProcessing($form) { if ($form.is('.processing')) { return; } /** * .block() is from a jQuery blockUI plugin loaded by WooCommerce. This code is based on WooCommerce * core in order for the Checkout widget to behave the same as WooCommerce Checkout pages. */ $form.addClass('processing').block({ message: null, overlayCSS: { background: '#fff', opacity: 0.6 } }); } } exports["default"] = Checkout; /***/ }) }]); //# sourceMappingURL=woocommerce-checkout-page.bf88689aec2ee294a5e8.bundle.js.map#email_tabs_form div#tabs { margin-top: 20px; padding: 0; } #email_tabs_form div#tabs div#menu-tab-listing { width: 20%; float: left; } #email_tabs_form div#tabs div#menu-tab-content { width: 75%; float: left; } #email_tabs_form div#tabs div#menu-tab-listing ul { width: 100%; display: block; background: #f3f6ff; border: 0px; padding: 0; /*min-height: 500px;*/ border-right: 1px solid #CCC; border-left: 1px solid #CCC; border-bottom: 1px solid #CCC; } #email_tabs_form div#tabs div#menu-tab-listing ul li { width: 100%; display: block; border-radius: 0px; cursor: pointer; margin: 0px; border: 0px; border-bottom: 1px solid #CCC; } #email_tabs_form div#tabs div#menu-tab-listing ul li a { padding: 20px 10px; width: 90%; font-size: 16px; } #email_tabs_form div#tabs div#menu-tab-content h1 { width: auto; display: block; border-bottom: 1px solid #CCC; padding: 15px 20px; } #email_tabs_form div#tabs div#menu-tab-content h2 { border-bottom: 1px solid #CCC; margin: 0px; padding: 10px 0; text-align: center; } .help-info-content { background: #FFF; padding: 10px; width: 98%; float: left; margin-top: 10px; /*border-radius: 10px;*/ box-shadow: 0 0 10px #CCC; } .help-info-content .left-blog { width: 48%; float: left; padding: 10px; } .help-info-content .right-blog { width: 48%; float: right; padding: 10px; } .help-info-content ul { width: 90%; margin-left: 20px; list-style: unset; } .help-info-content ul li { line-height: 22px; } .feature-section { width: 98%; padding: 10px; background: #FFF; float: left; margin: 20px auto; /*border-radius: 10px;*/ } .feature-section .feature-blog { width: 29%; float: left; vertical-align: top; min-height: 200px; padding: 10px; background: #f1f1f1; margin: 10px; /*border-radius: 10px;*/ } .feature-section .feature-blog ul { list-style: unset; width: 90%; margin-left: 20px; } .feature-section .feature-blog ul li { line-height: 20px; margin: 10px 0; } .feature-section .feature-blog ul li a { font-size: 14px; font-weight: bold; } .feature-section .feature-blog h3 { font-size: 18px; font-weight: bold; border-bottom: 1px solid #CCC; padding: 10px; margin: 0px; } .feature-blog-wrapper .feature-blog{ float: inherit; display: inline-block; width: 35%; } .feature-blog-wrapper { text-align: center; } .feature-section .feature-header { width: 100%; text-align: center; } .feature-section .feature-header h2 { font-size: 28px; border-bottom: 1px solid #CCC; margin: 0px; padding: 20px 0; margin-bottom: 10px; } .feature-section.feature-section-last h3 { line-height: 20px; text-align: center; } .feature-section.feature-section-last img { width: 90%; padding: 10px; border: 1px solid #CCC; margin: 10px 0; background: #000; } .feature-section.feature-section-last p { font-size: 14px; line-height: 22px; } .email-subscribers_page_es_settings input[type=text], .email-subscribers_page_es_settings input[type=password], .email-subscribers_page_es_settings input[type=email], .email-subscribers_page_es_settings textarea, #list_description, .email-subscribers_page_es_settings select { width: 70%; } .tablenav-pages span.paging-input { width: auto; display: inline-block; } div#post-body-content { width: 100%; float: left; } div#post-body-content .meta-box-sortables .row-blog { padding: 10px 0; } div#post-body-content .meta-box-sortables .row-blog label { margin-right: 10px; display: inline-block; width: 10%; font-weight: bold; } div#post-body-content .meta-box-sortables .row-blog input[type="text"], div#post-body-content .meta-box-sortables .row-blog input[type="email"], div#post-body-content .meta-box-sortables .row-blog select { width: 30%; height: 35px; } div#post-body-content .meta-box-sortables .row-blog p.submit input#submit { width: auto; height: auto; } .blog-content { width: 100%; } .blog-content .blog-row { padding: 10px 0; } .blog-content .blog-row p { width: 10%; display: inline-block; margin: 0px; } .blog-content .blog-row input, .blog-content .blog-row select { height: 35px; line-height: 35px; width: 35%; } .blog-content .blog-row.blog-row-submit input#submit { width: 100%; } .email-subscribers_page_es_newsletters table.form-table td select { height: 40px; width: 35%; line-height: 40px; } /* Customize Admin Settings */ .ig-settings-form .ui-state-active, .ig-settings-form .ui-widget-content .ui-state-active, .ig-settings-form .ui-widget-header .ui-state-active, .ig-settings-form a.ui-button:active, .ig-settings-form .ui-button:active, .ig-settings-form .ui-button.ui-state-active:hover { background: #ffffff !important; font-weight: normal; color: #000 !important; } .ig-settings-form .ui-state-active a, .ig-settings-form .ui-state-active a:link, .ig-settings-form .ui-state-active a:visited { color: #000 !important; } .content.save { float: right; } .es-settings-submit-btn { float: left; } .email-subscribers_page_es_subscribers .es-settings-submit-btn .button { background-color: #3ad01e; } #email_tabs_form div#tabs { clear: both; } #email_tabs_form div#tabs div#menu-tab-content h1 { padding: 14px; } .esbghead { /*background-image: url(https://multiratingpro.com/wp-content/uploads/2016/05/bg-9-full.jpg);*/ background: #4f85a1; padding: 50px; } .esbghead h1 { color: #fff !important; font-weight: bold; } .ui-tabs-panel h2 { background: white; color: black; font-size: 20px; } .essettings input#submit, .email-subscribers_page_es_subscribers input#submit { background: #0085ba; border-color: #0085ba; box-shadow: 0 1px 0 #0085ba; color: #fff; text-decoration: none; text-shadow: 0 -1px 1px #0085ba, 1px 0 1px #0085ba, 0 1px 1px #0085ba, -1px 0 1px #0085ba; } p.search-box.box-ma10 { margin: 0 5px; } .esbgheader { background-image: url('../images/bg3.png'); /*background: #f55764;*/ padding: 50px; background-repeat: no-repeat; background-size: cover; background-position: center center; } .esbgheader h1 { color: #fff !important; font-weight: bold; } .headerpart { margin: 10px 20px 0 2px; } .select2-container { margin: 0 2px 0 2px; } .tablenav.top #doaction, #doaction2, #post-query-submit { margin: 0px 4px 0 4px; } .leftside, .rightside { float: left; width: 10%; margin: 20px 0; } .leftside p.submit, .rightside p.submit { padding: 0 !important; margin: 0 !important; } /* Admin Settings */ .email-subscribers_page_es_settings #wpwrap { background-color: white; } .form-table .helper { font-style: italic; font-weight: 100; font-size: 12px; color: #9398a7; } .form-table .es_sub_headline{ margin-bottom: 0.5em; font-size: 12px; } #menu-tab-listing .ig-menu-tab.ui-tabs-active.ui-state-active.ui-tabs-active { background-color: white; } #menu-tab-listing .ui-state-default { background: #f3f6ff; } .es-settings-submit-btn { float: left; } .es-cta{ font-size: 1.2em; font-weight: bold; } .wrap .page-title-action.es-imp-button:hover { color: #FFFFFF; background-color: #03a025; } .page-title-action.es-imp-button { background-color: #03a025; color: #FFFFFF; } .es-contact-form { width: 70%; } .es-contact-form .form-table td{ line-height: 1.3em; } /**** Dashboard : start ***/ .wrap.about-wrap { background-color: transparent; position: relative; margin: 25px 40px 0 20px; box-shadow: none; -webkit-box-shadow: none; } .about-wrap.es { max-width: 100% } .about-header .wrap .button-hero, .button-main { color: #FFFFFF!important; border-color: #03a025!important; background: #03a025 !important; box-shadow: 0 1px 0 #03a025; font-weight: bold; height: 3em; line-height: 1em; } .about-header .wrap .button-hero:hover, .button-main { color: #FFF!important; background: #0AAB2E!important; border-color: #0AAB2E!important; } .about-header { background-color: #FFF; padding: 2em 1.5em; -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2); box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2); } .form-table th { width: 350px !important; } .es-ltr { width: 20em; height: 2em; margin-bottom: 10px; padding: 1.4em; } .es-about-text { /*margin-bottom: 2em;*/ font-size: 1em; /*padding-top: 0.5em;*/ } .es-notify-about-new-post-1 { margin-top: 1em; margin-right: 13em; margin-bottom: 0.3em; font-size: 1.1em; } .es-notify-about-new-post-2 { margin-right: 13em; font-size: 1em; color: gray; } .wrap.about-wrap h1 { font-size: 2.5em; line-height: 0.9em; } .feature-section.col>div { position: relative; width: 29.95%; margin-right: 4.999999999%; float: left } .feature-section.col.two-col>div { width: 45.95% } .feature-section.col img { width: 150px; border: none; } .feature-section.col p { margin-bottom: 1.5em } .about-wrap .feature-section h4 { margin-top: .4em } .about-wrap.es .feature-section { display: block!important } .about-wrap [class$=col] .last-feature { margin-right: 0 } .es-support { color: #000; margin: 178px 0 0; height: 10px; width: 180px; text-rendering: optimizeLegibility; text-align: right; right: 0; margin-top: 9em; padding-right: 1em; } .es-contact-us { font-size: 20px; line-height: 1.5em; font-weight: 800; margin-right: 20px; } .es-contact-us a { color: #E1564B; } .es-donate-link { text-align: right; font-size: 0.8em; margin-top: 1em; } .es-esaf-integration { width: 75% !important; } .es-ig-integration { width: 100% !important; } .es-rm-integration { width: 79% !important; } .es-integration-guide { text-align:justify; } .es_feature, .es_summary { line-height: 1.7em!important; } .es_summary { margin-left: 0em!important; } .es_feature_list, .es_faq_list { list-style-type:disc; margin-left: 1.5em!important; } .es_faq { margin-bottom: 1em; font-weight: 700; } .form-table td.es-optin-headline { color: red; text-align: center; font-weight: bold; font-size: 24px; } .form-table td.es-emm-image { padding: 15px 10px; width: 45%; text-align: center; } .form-table td.es-emm-text{ padding: 15px 10px; width: 50%; } .form-table td.es-emm-optin{ /*padding: 15px 10px;*/ /*width: 25%;*/ padding: 1em 0; } .form-table td.es-emm-optin form[name="klawoo_subscribe"] { margin-right: 1px; } #klawoo_response { background-color: yellow; } .es-about-line{ width: 85%; font-size: 14px; line-height: 1.8em; } .es-help-wrap{ border-top:1px dotted #CCC; } .subscribe-form{ margin-top: 2em; } .subscribe-form li{ list-style: disc; list-style-position: inside; } .es-upper{ display: flex; } .es-upper .es-info{ width: 60%; padding-right: 3em; border-right: 1px solid #f7f7f7; margin-left: 1.2em; } .es-info img{ vertical-align: bottom; } .es-lower{ margin-top: 1.5em; } .es-quick-links-wrapper{ margin-top: 2em; margin-bottom: 1em; } span.es-quick-links{ margin: 0 1em; font-size: 16px; font-weight: 800; } .es-quick-links a { color: #f55764; } .button-main{ color: #FFFFFF!important; border-color: #03a025!important; background: #03a025 !important; box-shadow: 0 1px 0 #03a025; font-weight: bold; height: 3em !important; line-height: 3em !important; margin: 1em auto !important; } .about-header .es-version { /*position: absolute;*/ top: 0; right: 0; text-align: center; padding: 10px; } h5.es-badge { margin: 0px; /*color: #E1564B;*/ font-size: 12px; /*text-align: right;*/ font-weight: 600; } .about-header .es-version h3 { margin: 10px 0; color: #333; display: inline; } .about-header .es-version a { color: #E1564B; text-decoration: none; font-size: 20px; font-weight: bold; } .about-header { background: #FFF; border-radius: 5px; padding: 10px; width: 98%; position: relative; box-shadow: 0 0 10px #CCC; } .about-header h2 { font-size: 1.9em; margin: 20px 0 10px 0; display: inline-block; color: #f55764; } .about-header .es-about-text { font-size: 1.5em; line-height: 1.6em; margin-top: 0.5em; } .about-header .es-notify-about-new-post-1 { margin: 10px 0; font-size: 18px; } .about-header ul { width: 100%; font-size: 14px; margin: 10px 0; /*color: #808080;*/ font-weight: normal; } .about-header ul li { margin: 15px 0; } .about-header .wrap.klawoo-form { /*border-top: 1px dotted #CCC;*/ width: 40%; margin-left: 2.5em; } .about-header .wrap.klawoo-form td.es-optin-headline { color: #f55764; text-align: center; font-weight: bold; font-size: 24px; padding: 0; } .about-header .wrap.klawoo-form td.es-emm-text { margin: 0px; padding: 0px; } .about-header .wrap.klawoo-form td.es-emm-image img { width: auto; } @media only screen and (max-width: 1362px){ .es-info h2{ font-size: 1.5em; } .es-info .es-about-line{ line-height: 1.4em; } .es-info .es-about-text{ font-size: 1.5em; } } .es-emm-text .column { padding: 0.5em; /*border: 1px solid rgba(0, 0, 0, 0.1);*/ text-align: center; color: rgba(0, 0, 0, 0.75); margin: 0 auto; /*border: 5px double #e0e0e0;*/ background: #f7f3c5; } .es-emm-text .column strong{ font-size: 1.2em; color: #f55764; } .es-emm-text .column i.dashicons-facebook { font-size: 2.5em; line-height: 0.6em; color: #28487D; margin: 0.2em 0; } /**** Dashboard : end ***/ .es_list_contact_status:before{ content: " \2219 "; font-size: 4em; vertical-align: text-bottom; } .subscribed.es_list_contact_status:before{ color: #0fc50f; } .unsubscribed.es_list_contact_status:before{ color: #c5310f; } .unconfirmed.es_list_contact_status:before{ color: #e6cc14; } .ig-es-process-queue { float: right; margin: 18px 0 3px; } .ig-es-process-queue .page-title-action { font-size: 16px; } .ig-es-process-queue .es-helper { margin: 3em; } @media only screen and (max-width: 1362px){ .es_list_contact_status:before{ font-size: 20px; } }