Plugin Directory

Changeset 2725980


Ignore:
Timestamp:
05/18/2022 10:39:45 AM (4 years ago)
Author:
Sygnoos
Message:

New version 4.1.8 released

Location:
popup-builder
Files:
359 added
25 edited

Legend:

Unmodified
Added
Removed
  • popup-builder/trunk/com/classes/Actions.php

    r2721110 r2725980  
    602602        $popup = apply_filters('sgpbShortCodePopupObj', $popup);
    603603
    604         $event = preg_replace('/on/', '', @$args['event']);
     604        $event = preg_replace('/on/', '', (isset($args['event']) ? $args['event'] : ''));
    605605        // when popup does not exists or popup post status it's not publish ex when popup in trash
    606606        if (empty($popup) || (!is_object($popup) && $popup != 'publish')) {
     
    659659
    660660        $popup->setLoadableModes($loadableMode);
    661         $scriptsLoader = new ScriptsLoader();
    662         $loadablePopups = array($popup);
    663         $groupObj = new PopupGroupFilter();
    664         $groupObj->setPopups(array($popup));
    665         $loadablePopups = $groupObj->filter();
    666         $scriptsLoader->setLoadablePopups($loadablePopups);
    667         $scriptsLoader->loadToFooter();
     661        $isAllowed = $popup->allowToLoad();
     662        if ($isAllowed){
     663            $groupObj = new PopupGroupFilter();
     664            $groupObj->setPopups(array($popup));
     665            $loadablePopups = $groupObj->filter();
     666            $scriptsLoader = new ScriptsLoader();
     667            $scriptsLoader->setLoadablePopups($loadablePopups);
     668            $scriptsLoader->loadToFooter();
     669        }
    668670
    669671        if (!empty($content)) {
  • popup-builder/trunk/com/classes/Ajax.php

    r2704875 r2725980  
    759759        // by default set empty value for users' role (adv. tar.)
    760760        $savedData['value'] = array();
    761         $savedData['hiddenOption'] = @$conditionConfig['hiddenOptionData'][$paramName];
     761        $savedData['hiddenOption'] = isset($conditionConfig['hiddenOptionData'][$paramName]) ? $conditionConfig['hiddenOptionData'][$paramName] : '';
    762762
    763763        $builderObj->setPopupId($popupId);
  • popup-builder/trunk/com/classes/ConvertToNewVersion.php

    r2466445 r2725980  
    207207        $newCounter = array();
    208208        foreach ($oldCounter as $key => $value) {
    209             $newId = @$idsMapping[$key];
    210             $newCounter[$newId] = $value;
     209            if (isset($idsMapping[$key])){
     210                $newId = $idsMapping[$key];
     211                $newCounter[$newId] = $value;
     212            }
    211213        }
    212214
     
    277279            $eventsInitialData[0][] = array(
    278280                'param' => 'exitIntent',
    279                 'value' => @$options['sgpb-option-exit-intent-type'],
     281                'value' => isset($options['sgpb-option-exit-intent-type']) ? $options['sgpb-option-exit-intent-type'] : '',
    280282                'hiddenOption' => array(
    281                     'sgpb-exit-intent-expire-time' => @$options['sgpb-exit-intent-expire-time'],
    282                     'sgpb-exit-intent-cookie-level' => @$options['sgpb-exit-intent-cookie-level'],
    283                     'sgpb-exit-intent-soft-from-top' => @$options['sgpb-exit-intent-soft-from-top']
     283                    'sgpb-exit-intent-expire-time' => isset($options['sgpb-exit-intent-expire-time']) ? $options['sgpb-exit-intent-expire-time'] : '',
     284                    'sgpb-exit-intent-cookie-level' => isset($options['sgpb-exit-intent-cookie-level']) ? $options['sgpb-exit-intent-cookie-level'] : '',
     285                    'sgpb-exit-intent-soft-from-top' => isset($options['sgpb-exit-intent-soft-from-top']) ? $options['sgpb-exit-intent-soft-from-top'] : ''
    284286                )
    285287            );
     
    297299            $eventsInitialData[0][] = array(
    298300                'param' => 'inactivity',
    299                 'value' => @$options['sgpb-inactivity-timer'],
     301                'value' => isset($options['sgpb-inactivity-timer']) ? $options['sgpb-inactivity-timer'] : '',
    300302                'hiddenOption' => array()
    301303            );
     
    306308            $eventsInitialData[0][] = array(
    307309                'param' => 'onScroll',
    308                 'value' => @$options['sgpb-onscroll-percentage'],
     310                'value' => isset($options['sgpb-onscroll-percentage']) ? $options['sgpb-onscroll-percentage'] : '',
    309311                'hiddenOption' => array()
    310312            );
     
    360362            $conditions['sgpb-conditions'][0][] = array(
    361363                'param' => 'groups_countries',
    362                 'operator' => @$options['sgpb-allow-countries'],
    363                 'value' => explode(',', @$options['sgpb-countries-iso'])
     364                'operator' => isset($options['sgpb-allow-countries']) ? $options['sgpb-allow-countries'] : '',
     365                'value' => explode(',', (isset($options['sgpb-countries-iso']) ? $options['sgpb-countries-iso'] : ''))
    364366            );
    365367        }
     
    416418
    417419            if ($options['allPages'] == 'selected') {
    418                 $savedPages = (array)@$options['allSelectedPages'];
     420                $savedPages = isset($options['allSelectedPages']) ? (array)$options['allSelectedPages'] : array();
    419421                $savedPagesValues = array_values($savedPages);
    420422
     
    548550    private function filterOptions($options)
    549551    {
    550         if (@$options['effect'] != 'No effect') {
     552        if (isset($options['effect']) && $options['effect'] != 'No effect') {
    551553            $options['sgpb-open-animation'] = 'on';
    552554        }
     
    560562        }
    561563
    562         if (@$options['popupContentBackgroundRepeat'] != 'no-repeat' && $options['popupContentBackgroundSize'] == 'auto') {
     564        if (isset($options['popupContentBackgroundRepeat']) && ($options['popupContentBackgroundRepeat'] != 'no-repeat' && $options['popupContentBackgroundSize'] == 'auto')) {
    563565            $options['popupContentBackgroundSize'] = 'repeat';
    564566        }
  • popup-builder/trunk/com/classes/Filters.php

    r2721110 r2725980  
    222222    {
    223223
    224         $infoContent .= 'Platform:           '.@$platform . "\n";
    225         $infoContent .= 'Browser Name:       '.@$bname . "\n";
    226         $infoContent .= 'Browser Version:    '.@$version . "\n";
    227         $infoContent .= 'User Agent:         '.@$uAgent . "\n";
     224        $infoContent .= 'Platform:           '.isset($platform) ? $platform : '' . "\n";
     225        $infoContent .= 'Browser Name:       '.isset($bname) ? $bname : '' . "\n";
     226        $infoContent .= 'Browser Version:    '.isset($version) ? $version : '' . "\n";
     227        $infoContent .= 'User Agent:         '.isset($uAgent) ? $uAgent : '' . "\n";
    228228
    229229        return $infoContent;
     
    598598                return $previewLink .= '/?sg_popup_preview_id='.$popupId;
    599599            }
    600             $targetParams = @$targets['sgpb-target'][0][0]['param'];
     600            $targetParams = isset($targets['sgpb-target'][0][0]['param']) ? $targets['sgpb-target'][0][0]['param'] : '';
    601601            if ((!empty($targetParams) && $targetParams == 'not_rule') || empty($targetParams)) {
    602602                $previewLink = home_url();
  • popup-builder/trunk/com/classes/MediaButton.php

    r2712631 r2725980  
    8686        }
    8787        $currentPostType = AdminHelper::getCurrentPostType();
     88        $mediaButtonContent = '';
    8889        if (!empty($currentPostType) && $currentPostType == SG_POPUP_POST_TYPE) {
    89             add_action('admin_footer', function() {
    90                 require_once(SG_POPUP_VIEWS_PATH.'htmlCustomButtonElement.php');
    91             });
     90            global $post;
     91            $elementorContent = get_post_meta($post->ID, '_elementor_edit_mode', true);
     92            if (!empty($elementorContent) && $elementorContent == 'builder'){
     93                ob_start();
     94                    @include(SG_POPUP_VIEWS_PATH.'htmlCustomButtonElement.php');
     95                $mediaButtonContent = ob_get_contents();
     96                ob_end_clean();
     97            }else {
     98                add_action('admin_footer', function() {
     99                    require_once(SG_POPUP_VIEWS_PATH.'htmlCustomButtonElement.php');
     100                });
     101            }
    92102        }
    93103
    94104        ob_start();
    95105            @include(SG_POPUP_VIEWS_PATH.'mediaButton.php');
    96         $mediaButtonContent = ob_get_contents();
     106        $mediaButtonContent .= ob_get_contents();
    97107        ob_end_clean();
    98108
  • popup-builder/trunk/com/classes/NotificationCenter.php

    r2686454 r2725980  
    117117        $extensionsKeys = wp_list_pluck($extensions['active'], 'key');
    118118        foreach ($notifications as $notification) {
    119             $id = @$notification['id'];
     119            $id = isset($notification['id']) ? $notification['id'] : '';
    120120
    121121            if (isset($notification['hideFor'])) {
  • popup-builder/trunk/com/classes/PopupChecker.php

    r2704875 r2725980  
    466466        else if ($targetData['param'] == 'post_tags_ids') {
    467467            $tagsObj = wp_get_post_tags($postId);
    468             $postTagsValues = (array)@$targetData['value'];
     468            $postTagsValues = isset($targetData['value']) ? (array)$targetData['value'] : array();
    469469            $selectedTags = array_values($postTagsValues);
    470470
  • popup-builder/trunk/com/classes/PopupLoader.php

    r2712631 r2725980  
    101101        }
    102102        if (!empty($foundPopup)) {
    103             if (@$foundPopup->post_type == SG_POPUP_POST_TYPE) {
     103            if (isset($foundPopup->post_type) && $foundPopup->post_type == SG_POPUP_POST_TYPE) {
    104104                $events = \SgpbDataConfig::websiteDefaultConfigs()['events'][0];
    105105                $targets = array(\SgpbDataConfig::websiteDefaultConfigs()['target']);
  • popup-builder/trunk/com/classes/ScriptsLoader.php

    r2688779 r2725980  
    6262     * @param object $popup
    6363     *
    64      * @return array|mixed|string|void $popupOptions
     64     * @return array|mixed|string $popupOptions
    6565     */
    6666    private function getEncodedOptionsFromPopup($popup)
     
    7373        $popupOptions = array_merge($popupOptions, $extraOptions);
    7474        $popupOptions['sgpbConditions'] = apply_filters('sgpbRenderCondtions',  $popupCondition);
    75         // These two lines have been added in order to not use the json_econde and to support PHP 5.3 version.
    76         $popupOptions = AdminHelper::serializeData($popupOptions);
    77         $popupOptions = base64_encode($popupOptions);
    78 
     75        // JSON_UNESCAPED_UNICODE does not exist since 5.4.0
     76        if (PHP_VERSION < '5.4.0'){
     77            $popupOptions = json_encode($popupOptions);
     78        } else {
     79            $popupOptions = json_encode($popupOptions,JSON_UNESCAPED_UNICODE);
     80        }
    7981        return $popupOptions;
    8082    }
     
    280282
    281283                if (empty($jsFile['folderUrl'])) {
    282                     wp_enqueue_script(@$jsFile['filename']);
     284                    if(isset($jsFile['filename'])){
     285                        wp_enqueue_script($jsFile['filename']);
     286                    }
    283287                    continue;
    284288                }
  • popup-builder/trunk/com/classes/Updates.php

    r2686454 r2725980  
    9393
    9494        foreach ($licenses as $license) {
    95             $key = @$license['key'];
    96             $itemId = @$license['itemId'];
     95            $key = isset($license['key']) ? $license['key'] : '';
     96            $itemId = isset($license['itemId']) ? $license['itemId'] : '';
    9797            $this->licenseKey = $key;
    9898
  • popup-builder/trunk/com/classes/_detection/SgpbPopupVersionDetection.php

    r2579444 r2725980  
    100100            }
    101101
    102             $key = @$license["key"];
     102            $key = isset($license["key"]) ?$license["key"] : '' ;
    103103            $licenseKey = trim(get_option("sgpb-license-key-".$key));
    104104            $status = get_option("sgpb-license-status-".$key);
  • popup-builder/trunk/com/classes/dataTable/Subscribers.php

    r2721110 r2725980  
    5050        $filterColumnsDisplaySettings = apply_filters('sgpbAlterColumnIntoSubscribers', $filterColumnsDisplaySettings);
    5151
    52         $this->setColumns(@$filterColumnsDisplaySettings['columns']);
    53         $this->setDisplayColumns(@$filterColumnsDisplaySettings['displayColumns']);
     52        $this->setColumns((isset($filterColumnsDisplaySettings['columns']) ? $filterColumnsDisplaySettings['columns'] : ''));
     53        $this->setDisplayColumns((isset($filterColumnsDisplaySettings['displayColumns']) ? $filterColumnsDisplaySettings['displayColumns'] : ''));
    5454        $this->setSortableColumns(array(
    5555            'id' => array('id', false),
  • popup-builder/trunk/com/classes/popups/ImagePopup.php

    r2578665 r2725980  
    1010        $savedImageUrl = '';
    1111        $data = $this->getSanitizedData();
    12         $imageUrl = @$data['sgpb-image-url'];
     12        $imageUrl = isset($data['sgpb-image-url']) ? $data['sgpb-image-url'] : '';
    1313        $savedPopup = $this->getSavedPopup();
    1414
  • popup-builder/trunk/com/classes/popups/SGPopup.php

    r2712631 r2725980  
    549549
    550550        $data = $this->getSanitizedData();
    551         $buttonImageUrl = @$data['sgpb-button-image'];
    552         $contentBackgroundImageUrl = @$data['sgpb-background-image'];
     551        $buttonImageUrl = isset($data['sgpb-button-image']) ? $data['sgpb-button-image'] : '';
     552        $contentBackgroundImageUrl = isset($data['sgpb-background-image']) ? $data['sgpb-background-image'] : '';
    553553
    554554        $savedPopup = $this->getSavedPopup();
     
    15891589                continue;
    15901590            }
    1591             $type = @$popup->getType();
     1591            $type = $popup->getType();
    15921592
    15931593            if (isset($filters['type'])) {
     
    16411641        $options = $this->getOptions();
    16421642
    1643         $specialBehaviors = @$options['sgpb-behavior-after-special-events'];
     1643        $specialBehaviors = isset($options['sgpb-behavior-after-special-events']) ? $options['sgpb-behavior-after-special-events'] : '';
    16441644        if (!empty($specialBehaviors) && is_array($specialBehaviors)) {
    16451645            foreach ($specialBehaviors as $behavior) {
  • popup-builder/trunk/com/config/configPackage.php

    r2721110 r2725980  
    44}
    55
    6 define('SG_POPUP_VERSION', '4.1.7');
     6define('SG_POPUP_VERSION', '4.1.8');
    77define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
    88define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
  • popup-builder/trunk/com/helpers/AdminHelper.php

    r2721110 r2725980  
    576576
    577577        if (is_multisite()) {
    578 
    579             $getUsersObj = get_users(
    580                 array(
    581                     'blog_id' => get_current_blog_id(),
    582                     'search' => get_current_user_id()
    583                 )
    584             );
     578            $getUsersObj = array();
     579            if (get_current_user_id() !== 0){
     580                $getUsersObj = get_users(
     581                    array(
     582                        'blog_id' => get_current_blog_id(),
     583                        'search' => get_current_user_id()
     584                    )
     585                );
     586            }
    585587
    586588            if (!empty($getUsersObj[0])) {
     
    13301332
    13311333        $dateObj = self::getDateObjFromDate('now', $timezone);
    1332         $timeNow = @strtotime($dateObj);
    1333         $seconds = @strtotime($dueDate)-$timeNow;
     1334        $timeNow = gettype($dateObj) == 'string' ? strtotime($dateObj) : 0;
     1335        $dueDateTime = gettype($dueDate) == 'string' ? strtotime($dueDate) : 0;
     1336        $seconds = $dueDateTime-$timeNow;
    13341337        if ($seconds < 0) {
    13351338            $seconds = 0;
     
    14451448        $hasInactiveExtensions = false;
    14461449        $allRegiseredPBPlugins = AdminHelper::getOption(SGPB_POPUP_BUILDER_REGISTERED_PLUGINS);
    1447         $allRegiseredPBPlugins = @json_decode($allRegiseredPBPlugins, true);
     1450        $allRegiseredPBPlugins = !empty($allRegiseredPBPlugins) ? json_decode($allRegiseredPBPlugins, true) : array();
    14481451        if (empty($allRegiseredPBPlugins)) {
    14491452            return $hasInactiveExtensions;
     
    15461549                    continue;
    15471550                }
    1548                 $content = @$jsPostMeta['sgpb-'.$key];
     1551                $content = isset($jsPostMeta['sgpb-'.$key]) ? $jsPostMeta['sgpb-'.$key] : '';
    15491552                $content = str_replace('popupId', $popupId, $content);
    15501553                $content = str_replace("<", "&lt;", $content);
     
    21822185
    21832186        foreach ($licenses as $license) {
    2184             $key = @$license['key'];
    2185             $itemId = @$license['itemId'];
    2186             $filePath = @$license['file'];
     2187            $key = isset($license['key']) ?$license['key'] : '';
     2188            $itemId = isset($license['itemId']) ? $license['itemId'] : '';
     2189            $filePath = isset($license['file']) ? $license['file'] : '';
    21872190            $pluginMainFilePath = strpos($filePath, SG_POPUP_PLUGIN_PATH) !== 0 ? SG_POPUP_PLUGIN_PATH.$filePath : $filePath;
    21882191
  • popup-builder/trunk/com/helpers/Functions.php

    r2686454 r2725980  
    4747                continue;
    4848            }
    49             $errorWrapperClassName = @$formField['attrs']['name'].'-error-message';
     49            $errorWrapperClassName = (isset($formField['attrs']['name']) ? $formField['attrs']['name'] : '').'-error-message';
    5050            if (isset($formField['errorMessageBoxStyles'])) {
    5151                $errorMessageBoxStyles = 'style="width:'.$formField['errorMessageBoxStyles'].'"';
     
    6969            if (!empty($formField['style'])) {
    7070                $styles = 'style="';
    71                 if (strpos(@$formField['attrs']['name'], 'gdpr') !== false) {
     71                if (isset($formField['attrs']['name']) && strpos($formField['attrs']['name'], 'gdpr') !== false) {
    7272                    unset($formField['style']['height']);
    7373                }
     
    106106                    $gdprText = $formField['text'];
    107107                }
    108                 $formField['style'] = array('color' => $color, 'width' => @$formField['style']['width']);
     108                $formField['style'] = array(
     109                        'color' => $color,
     110                        'width' => isset($formField['style']['width']) ? $formField['style']['width'] : ''
     111                );
    109112                $gdprWrapperStyles = 'style="color:'.$color.'"';
    110113                $htmlElement = self::createGdprCheckbox($attrs, $styles, $label, $gdprWrapperStyles, $gdprText);
     
    139142                $loginUsername = $labelArgs['attrs']['sgpb-login-username'];
    140143            }
    141             $inputElement = '<label for="'.$loginUsername.'"><p class="sgpb-login-input-label '.@$labelArgs['attrs']['labelClass'].'">'.@$labelArgs['attrs']['hasLabel'].'</p>'.$inputElement.'</label>';
     144            $labelClass = isset($labelArgs['attrs']['labelClass']) ? $labelArgs['attrs']['labelClass'] : '';
     145            $hasLabel = isset($labelArgs['attrs']['hasLabel']) ? $labelArgs['attrs']['hasLabel'] : '';
     146            $inputElement = '<label for="'.$loginUsername.'"><p class="sgpb-login-input-label '.$labelClass.'">'.$hasLabel.'</p>'.$inputElement.'</label>';
    142147        }
    143148        if (!empty($errorWrapperClassName)) {
  • popup-builder/trunk/com/helpers/MultipleChoiceButton.php

    r2686454 r2725980  
    210210            $info .= '<div class="sgpb-info-wrapper">';
    211211            $info .= '<span class="infoSelectRepeat samefontStyle sgpb-info-text" style="display: none;">';
    212             $info .= @$field['label']['info'];
     212            $info .= $field['label']['info'];
    213213            $info .= '</span>';
    214214            $info .= '</div>';
     
    284284            $info = '<div class="sgpb-info-wrapper">';
    285285            $info = '<span class="infoSelectRepeat samefontStyle sgpb-info-text" style="display: none;">';
    286             $info .= @$field['label']['info'];
     286            $info .= $field['label']['info'];
    287287            $info = '</span>';
    288288            $info .= '</div>';
  • popup-builder/trunk/popup-builder.php

    r2721110 r2725980  
    44* Plugin URI: https://popup-builder.com
    55* Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
    6 * Version: 4.1.7
     6* Version: 4.1.8
    77* Author: Sygnoos
    88* Author URI: https://sygnoos.com
  • popup-builder/trunk/public/css/newDesignFromBuild.css

    r2584791 r2725980  
    1 @font-face{font-family:"Segoe UI Regular";src:url(../fonts/SegoeUI.woff) format("woff")}@font-face{font-family:"Segoe UI Bold";src:url(fonts/Segoe-UI-Bold.woff) format("woff")}@font-face{font-family:Glyphter;src:url(../fonts/Glyphter.woff) format("woff")}.sgpb *{box-sizing:border-box;font-family:Segoe UI Regular,Arial,Helvetica,sans-serif}.sgpb html{height:100%}.sgpb body{height:100%;margin:0;padding:0;overflow-x:hidden}.sgpb h1,.sgpb h2,.sgpb h3,.sgpb h4,.sgpb h5,.sgpb h6,.sgpb p{margin:0;padding:0}.sgpb input{outline:0}.sgpb button{cursor:pointer}.sgpb input[type=email]:focus,.sgpb input[type=number]:focus,.sgpb input[type=search]:focus,.sgpb input[type=text]:focus{box-shadow:none}.sgpb input[type=button]:hover,.sgpb input[type=submit]:hover{cursor:pointer}body.post-type-popupbuilder,body.post-type-sgpbautoresponder,body.post-type-sgpbtemplate{line-height:1.2}body.post-type-popupbuilder .sgpb-modal .inputBlock__title,body.post-type-popupbuilder .sgpb-wrapper .inputBlock__title,body.post-type-sgpbautoresponder .sgpb-modal .inputBlock__title,body.post-type-sgpbautoresponder .sgpb-wrapper .inputBlock__title,body.post-type-sgpbtemplate .sgpb-modal .inputBlock__title,body.post-type-sgpbtemplate .sgpb-wrapper .inputBlock__title{font-weight:600;font-size:17px}body.post-type-popupbuilder .sgpb-modal .text,body.post-type-popupbuilder .sgpb-wrapper .text,body.post-type-sgpbautoresponder .sgpb-modal .text,body.post-type-sgpbautoresponder .sgpb-wrapper .text,body.post-type-sgpbtemplate .sgpb-modal .text,body.post-type-sgpbtemplate .sgpb-wrapper .text{display:flex;align-items:center;color:#000;margin-bottom:10px}body.post-type-popupbuilder .sgpb-modal .sgpb-icons,body.post-type-popupbuilder .sgpb-wrapper .sgpb-icons,body.post-type-sgpbautoresponder .sgpb-modal .sgpb-icons,body.post-type-sgpbautoresponder .sgpb-wrapper .sgpb-icons,body.post-type-sgpbtemplate .sgpb-modal .sgpb-icons,body.post-type-sgpbtemplate .sgpb-wrapper .sgpb-icons{margin-right:10px;font-weight:400}body.post-type-popupbuilder .sgpb-modal .icons_blue,body.post-type-popupbuilder .sgpb-wrapper .icons_blue,body.post-type-sgpbautoresponder .sgpb-modal .icons_blue,body.post-type-sgpbautoresponder .sgpb-wrapper .icons_blue,body.post-type-sgpbtemplate .sgpb-modal .icons_blue,body.post-type-sgpbtemplate .sgpb-wrapper .icons_blue{background:#b5caec!important;color:#2873eb!important}body.post-type-popupbuilder .sgpb-modal .icons_pink,body.post-type-popupbuilder .sgpb-wrapper .icons_pink,body.post-type-sgpbautoresponder .sgpb-modal .icons_pink,body.post-type-sgpbautoresponder .sgpb-wrapper .icons_pink,body.post-type-sgpbtemplate .sgpb-modal .icons_pink,body.post-type-sgpbtemplate .sgpb-wrapper .icons_pink{background:#ffcece!important;color:#c12121!important}body.post-type-popupbuilder .sgpb-modal .icons_gray,body.post-type-popupbuilder .sgpb-wrapper .icons_gray,body.post-type-sgpbautoresponder .sgpb-modal .icons_gray,body.post-type-sgpbautoresponder .sgpb-wrapper .icons_gray,body.post-type-sgpbtemplate .sgpb-modal .icons_gray,body.post-type-sgpbtemplate .sgpb-wrapper .icons_gray{background:#c7c7c7!important;color:#333!important}body.post-type-popupbuilder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem,body.post-type-sgpbautoresponder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem,body.post-type-sgpbtemplate #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem{align-items:flex-end!important}body.post-type-popupbuilder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-add-rule,body.post-type-popupbuilder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-delete-rule,body.post-type-sgpbautoresponder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-add-rule,body.post-type-sgpbautoresponder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-delete-rule,body.post-type-sgpbtemplate #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-add-rule,body.post-type-sgpbtemplate #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-delete-rule{margin-bottom:10px}.post-type-popupbuilder .sgpb-wrapper .h1,.post-type-popupbuilder .sgpb-wrapper .h2,.post-type-popupbuilder .sgpb-wrapper .h3,.post-type-popupbuilder .sgpb-wrapper .h4,.post-type-popupbuilder .sgpb-wrapper .h5,.post-type-popupbuilder .sgpb-wrapper .h6,.post-type-popupbuilder .sgpb-wrapper h1,.post-type-popupbuilder .sgpb-wrapper h2,.post-type-popupbuilder .sgpb-wrapper h3,.post-type-popupbuilder .sgpb-wrapper h4,.post-type-popupbuilder .sgpb-wrapper h5,.post-type-popupbuilder .sgpb-wrapper h6,.post-type-sgpbautoresponder .sgpb-wrapper .h1,.post-type-sgpbautoresponder .sgpb-wrapper .h2,.post-type-sgpbautoresponder .sgpb-wrapper .h3,.post-type-sgpbautoresponder .sgpb-wrapper .h4,.post-type-sgpbautoresponder .sgpb-wrapper .h5,.post-type-sgpbautoresponder .sgpb-wrapper .h6,.post-type-sgpbautoresponder .sgpb-wrapper h1,.post-type-sgpbautoresponder .sgpb-wrapper h2,.post-type-sgpbautoresponder .sgpb-wrapper h3,.post-type-sgpbautoresponder .sgpb-wrapper h4,.post-type-sgpbautoresponder .sgpb-wrapper h5,.post-type-sgpbautoresponder .sgpb-wrapper h6,.post-type-sgpbtemplate .sgpb-wrapper .h1,.post-type-sgpbtemplate .sgpb-wrapper .h2,.post-type-sgpbtemplate .sgpb-wrapper .h3,.post-type-sgpbtemplate .sgpb-wrapper .h4,.post-type-sgpbtemplate .sgpb-wrapper .h5,.post-type-sgpbtemplate .sgpb-wrapper .h6,.post-type-sgpbtemplate .sgpb-wrapper h1,.post-type-sgpbtemplate .sgpb-wrapper h2,.post-type-sgpbtemplate .sgpb-wrapper h3,.post-type-sgpbtemplate .sgpb-wrapper h4,.post-type-sgpbtemplate .sgpb-wrapper h5,.post-type-sgpbtemplate .sgpb-wrapper h6{font-family:Segoe UI Regular,Arial,Helvetica,sans-serif}.post-type-popupbuilder .sgpb-wrapper code,.post-type-sgpbautoresponder .sgpb-wrapper code,.post-type-sgpbtemplate .sgpb-wrapper code{padding:2px 4px;font-size:90%;color:#2873eb;background-color:#f9f2f4;border-radius:4px}.post-type-popupbuilder #wpcontent,.post-type-sgpbautoresponder #wpcontent,.post-type-sgpbtemplate #wpcontent{background:#fff}.post-type-popupbuilder .dashicons,.post-type-popupbuilder .dashicons-before:before,.post-type-sgpbautoresponder .dashicons,.post-type-sgpbautoresponder .dashicons-before:before,.post-type-sgpbtemplate .dashicons,.post-type-sgpbtemplate .dashicons-before:before{font-family:dashicons}.post-type-popupbuilder .dashicons-menu-icon-sgpb,.post-type-popupbuilder .dashicons-menu-icon-sgpb:before,.post-type-sgpbautoresponder .dashicons-menu-icon-sgpb,.post-type-sgpbautoresponder .dashicons-menu-icon-sgpb:before,.post-type-sgpbtemplate .dashicons-menu-icon-sgpb,.post-type-sgpbtemplate .dashicons-menu-icon-sgpb:before{font-family:popupbuilder-icon}.post-type-popupbuilder a,.post-type-sgpbautoresponder a,.post-type-sgpbtemplate a{text-decoration:none}.post-type-popupbuilder a:focus,.post-type-popupbuilder a:hover,.post-type-sgpbautoresponder a:focus,.post-type-sgpbautoresponder a:hover,.post-type-sgpbtemplate a:focus,.post-type-sgpbtemplate a:hover{outline:0;text-decoration:none;box-shadow:none}.post-type-popupbuilder .edit-post-meta-boxes-area .postbox>.inside.inside,.post-type-sgpbautoresponder .edit-post-meta-boxes-area .postbox>.inside.inside,.post-type-sgpbtemplate .edit-post-meta-boxes-area .postbox>.inside.inside{border-bottom:none}.post-type-popupbuilder .select2,.post-type-sgpbautoresponder .select2,.post-type-sgpbtemplate .select2{min-width:190px;width:auto!important;line-height:1.2}.post-type-popupbuilder .select2 .select2-selection,.post-type-sgpbautoresponder .select2 .select2-selection,.post-type-sgpbtemplate .select2 .select2-selection{background:#f1f1f1;border:none!important;padding:7px;height:auto;min-height:49px;outline:0}.post-type-popupbuilder .select2 .select2-selection__rendered,.post-type-sgpbautoresponder .select2 .select2-selection__rendered,.post-type-sgpbtemplate .select2 .select2-selection__rendered{line-height:2.7!important;max-width:280px}.post-type-popupbuilder .select2 .select2-selection__arrow,.post-type-sgpbautoresponder .select2 .select2-selection__arrow,.post-type-sgpbtemplate .select2 .select2-selection__arrow{height:47px}.post-type-popupbuilder .select2 .select2-selection__arrow b,.post-type-sgpbautoresponder .select2 .select2-selection__arrow b,.post-type-sgpbtemplate .select2 .select2-selection__arrow b{border-color:#000 transparent transparent transparent}.post-type-popupbuilder .select2 .select2-selection--multiple,.post-type-sgpbautoresponder .select2 .select2-selection--multiple,.post-type-sgpbtemplate .select2 .select2-selection--multiple{padding:0 5px}.post-type-popupbuilder .select2 .select2-selection__choice,.post-type-sgpbautoresponder .select2 .select2-selection__choice,.post-type-sgpbtemplate .select2 .select2-selection__choice{display:inline-flex;flex-direction:row-reverse;background:#fff;padding:0 6px 0 10px;justify-content:space-between;align-items:center}.post-type-popupbuilder .select2 .select2-selection__choice__remove,.post-type-sgpbautoresponder .select2 .select2-selection__choice__remove,.post-type-sgpbtemplate .select2 .select2-selection__choice__remove{margin-left:10px}.post-type-popupbuilder .sgpb-reset-count-btn,.post-type-sgpbautoresponder .sgpb-reset-count-btn,.post-type-sgpbtemplate .sgpb-reset-count-btn{color:#c12121!important}.post-type-popupbuilder .sgpb-reset-count-btn:hover,.post-type-sgpbautoresponder .sgpb-reset-count-btn:hover,.post-type-sgpbtemplate .sgpb-reset-count-btn:hover{color:#0a4b78!important}.post-type-popupbuilder .sgpb-add-subscriber-header-spinner-column,.post-type-sgpbautoresponder .sgpb-add-subscriber-header-spinner-column,.post-type-sgpbtemplate .sgpb-add-subscriber-header-spinner-column{text-align:center;margin-top:10px}.post-type-popupbuilder .sgpb-add-subscriber-header-spinner-column .sgpb-subscribers-add-spinner,.post-type-sgpbautoresponder .sgpb-add-subscriber-header-spinner-column .sgpb-subscribers-add-spinner,.post-type-sgpbtemplate .sgpb-add-subscriber-header-spinner-column .sgpb-subscribers-add-spinner{margin:0}.sgpb .sgpb-btn,.sgpb .sgpb-btn:active,.sgpb .sgpb-btn:focus{background:0 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:10px 15px;border:2px solid transparent;line-height:1.2;font-weight:600;cursor:pointer}.sgpb .sgpb-btn-blue{color:#fff!important;background:#2873eb;border-color:#2873eb}.sgpb .sgpb-btn-blue:active,.sgpb .sgpb-btn-blue:focus,.sgpb .sgpb-btn-blue:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#fff;color:#2873eb!important;border-color:#2873eb}.sgpb .sgpb-btn-blue--outline{color:#2873eb!important;background:#fff;border-color:#2873eb}.sgpb .sgpb-btn-blue--outline:active,.sgpb .sgpb-btn-blue--outline:focus,.sgpb .sgpb-btn-blue--outline:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#2873eb;color:#fff!important;border-color:#2873eb}.sgpb .sgpb-btn-blue-light{color:#2873eb;background:rgba(0,102,255,.2);border-color:transparent}.sgpb .sgpb-btn-blue-light:active,.sgpb .sgpb-btn-blue-light:focus,.sgpb .sgpb-btn-blue-light:hover{box-shadow:none;background:rgba(0,102,255,.2);color:#2873eb!important;border-color:transparent}.sgpb .sgpb-btn-dark-outline,.sgpb .sgpb-btn-dark-outline:active,.sgpb .sgpb-btn-dark-outline:focus{background:#fff;color:#000;border-color:#000}.sgpb .sgpb-btn-danger{color:#c12121!important;background:#fcc}.sgpb .sgpb-btn-danger:active,.sgpb .sgpb-btn-danger:focus,.sgpb .sgpb-btn-danger:hover{box-shadow:none;background:#c12121;color:#fff!important;border-color:transparent}.sgpb .sgpb-btn-gray-light{color:#000;background-color:#f1f1f1}.sgpb .sgpb-btn-gray-light:active,.sgpb .sgpb-btn-gray-light:focus,.sgpb .sgpb-btn-gray-light:hover{background-color:#fff}.sgpb .sgpb-btn-more_extensions,.sgpb .sgpb-btn-more_extensions:active,.sgpb .sgpb-btn-more_extensions:focus,.sgpb .sgpb-btn-more_extensions:hover{box-shadow:0 0 6px rgba(1,185,255,.8);background:#01b9ff;color:#fff;border-color:#01b9ff;font:Bold 22px/28px Segoe UI Regular!important;padding:5px 34px}.sgpb .sgpb-btn--rounded{border-radius:39px}.sgpb .sgpb-btn--rounded:active,.sgpb .sgpb-btn--rounded:focus{-webkit-border-radius:39px;-moz-border-radius:39px;border-radius:39px}.sgpb .sgpb-btn-disabled,.sgpb .sgpb-btn-disabled:active,.sgpb .sgpb-btn-disabled:focus,.sgpb .sgpb-btn-disabled:hover{outline:0!important;cursor:no-drop!important;background:#c2c2c2!important;color:#707070!important;border-color:transparent!important;box-shadow:none!important}.sgpb .sgpb--group{display:flex}.sgpb .sgpb--group .sgpb-btn{margin-left:-2px;border-top-left-radius:0;border-bottom-left-radius:0}.sgpb .sgpb--group .sgpb-input{border-top-right-radius:0;border-bottom-right-radius:0}.sgpb .sgpb-header-h1{color:#000;text-align:left;font-size:40px;font-weight:700;letter-spacing:0}.sgpb .sgpb-header-h2{color:#000;text-align:left;font-size:35px;font-weight:700;letter-spacing:0}.sgpb .sgpb-header-h3{color:#000;text-align:left;font-size:30px;font-weight:700;letter-spacing:0}.sgpb .sgpb-header-h4{color:#000;text-align:left;font-size:25px;font-weight:700;letter-spacing:0}.sgpb .sgpb-cubes{width:40px;height:40px;align-content:center;position:relative;display:flex;z-index:9;flex-wrap:wrap}.sgpb .sgpb-cubes-mini{width:15px;height:15px;background:#fff;margin:2px;border-radius:2px}.sgpb .sgpb-cubes-mini_little{width:13px;height:13px}.sgpb .sgpb-box{height:90px;display:flex;align-items:center;box-shadow:0 0 20px rgba(0,0,0,.2);border-radius:18px;cursor:pointer;background:#fff;color:#000;flex:0 0 23%;margin:0 1%}.sgpb .sgpb-box-img{width:90px;height:90px;border-radius:18px;position:relative;margin-right:22px;transition:.4s}.sgpb .sgpb-box-text{font:Bold 20px/24px Segoe UI Regular!important}.sgpb .sgpb-box-plus{font-weight:bolder;position:absolute;right:-3%;bottom:-13%;border-radius:50%;transition:visibility 0s,opacity .3s linear;opacity:0;font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:20px;color:#fff;width:45px;height:45px;display:flex;align-items:center;justify-content:center;background:#2873eb 0 0 no-repeat padding-box;box-shadow:0 0 15px rgba(40,115,235,.3);margin-left:11px}.sgpb .sgpb-box-default{background:#f1f1f1}.sgpb .sgpb-box-default img{background:#fff}.sgpb .sgpb-box-active img{background:#2873eb}.sgpb .sgpb-box:hover img{transform:translate(-23px,-23px);box-shadow:0 0 20px rgba(0,0,0,.2)}.sgpb .sgpb-box:hover .sgpb-box-plus{opacity:1}.sgpb .sgpb-addPopup,.sgpb .sgpb-pro-extensions{flex-wrap:wrap}.sgpb .sgpb-options{width:100%;display:flex;position:relative;flex-direction:column}.sgpb .sgpb-options-menu{width:23%;padding:20px;background:#f8f8f8;margin-bottom:10px;position:relative;cursor:pointer}.sgpb .sgpb-options-menu:before{content:'';position:absolute;top:0;bottom:0;left:0;width:3px;background:0 0}.sgpb .sgpb-options-menu-header__sub{display:none;color:#757575}.sgpb .sgpb-options-menu-active{background:#fff;box-shadow:0 0 10px rgba(1,185,255,.3)}.sgpb .sgpb-options-menu-active:before{background:#01b9ff}.sgpb .sgpb-options-menu-active .sgpb-options-menu-header{color:#01b9ff;margin-bottom:10px}.sgpb .sgpb-options-menu-active .sgpb-options-menu-header__sub{display:block}.sgpb .sgpb-options-menu-active+.sgpb-options-content{display:block}.sgpb .sgpb-options-content{display:none;position:absolute;top:0;right:0;width:77%;padding:0 40px}.sgpb .sgpb-options-content .sgpb-header-h1{line-height:1.2}.sgpb .sgpb-options-content .sgpb-wrapper .text{display:flex;align-items:center;color:#000;margin-top:-30px;margin-bottom:10px}.sgpb .sgpb-options-content .sgpb-wrapper .text .inputBlock__title{font-weight:600;font-size:17px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-icons{margin-right:10px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-btn{width:80%;text-align:center;font-size:20px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions *{font-family:"Segoe UI Regular"}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-box{max-width:349px;display:flex;align-items:center;flex-direction:column;padding:13px 10px;border:1px solid rgba(112,112,112,.12);background:rgba(232,232,232,.11);border-radius:10px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-main-wrapper{align-items:flex-start}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-title{font-size:30px;font-weight:600;color:#000}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-text{font-size:15px;color:#757575;padding:0 25px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-pro-url{font-family:"Segoe UI Regular";color:#2873eb;font-size:15px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-inline-border{width:80%;height:2px;background:rgba(112,112,112,.12)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list{width:80%;text-align:center}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list .sgpb-pro-conditions-inline-border{width:100%}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list .sgpb-pro-conditions-inline-border:last-child{display:none}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list *{color:#757575;font-size:15px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label{position:relative}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-img{display:block;width:105px;height:70px;background-size:100px;background-repeat:no-repeat;background-position:center}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-1+.sgpb-popup-theme-img{background-image:url(../img/theme1.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-2+.sgpb-popup-theme-img{background-image:url(../img/theme2.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-3+.sgpb-popup-theme-img{background-image:url(../img/theme3.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-4+.sgpb-popup-theme-img{background-image:url(../img/theme4.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-5+.sgpb-popup-theme-img{background-image:url(../img/theme5.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-6+.sgpb-popup-theme-img{background-image:url(../img/theme6.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label input[type=radio]{width:100%;height:100%;visibility:hidden;position:absolute}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label input[type=radio]:checked+.sgpb-popup-theme-img{width:140px;height:110px;background-size:130px;box-shadow:0 0 10px rgba(1,185,255,.3)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .sgpb-range-wrap input[type=range]{cursor:pointer;width:200px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .sgpb-range-wrap input[type=text]{width:52px;padding:0 0 0 10px!important}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground{background:#f1f1f1;border-radius:5px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .subFormItemIcons{display:inline-flex;flex-direction:column;justify-content:space-around}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item{background:#b5caec;width:60px;height:60px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;cursor:pointer}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item+img{width:200px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item.icons_pink{background:#ffcece}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item:hover{cursor:pointer}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings input{max-width:100px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .subFormItem__x{width:60px;height:60px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .subFormItem__x div{width:100%;height:100%}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item img{width:45px;height:45px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item.icons_blue{background:#b5caec}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item.icons_pink{background:#ffcece}.sgpb .sgpb-options-content .sgpb-media-upload{width:100%;height:70%;min-height:50vh}.sgpb .sgpb-options-content .sgpb-media-upload .formItem_last{width:500px;height:500px;position:relative;margin:0;box-shadow:0 0 20px rgba(0,0,0,.3);display:flex;align-items:center;justify-content:center}.sgpb .sgpb-options-content .sgpb-media-upload .formItem_last .sgpb-icons{position:absolute;left:-7%;width:80px;height:80px;font-size:50px;margin:0}.sgpb .sgpb-options-content .sgpb-media-upload .sgpb-show-image-container{background-image:url(../images/NoImage.png);width:70%;height:70%;min-height:40vh;background-repeat:no-repeat;background-size:contain;background-position:center}.sgpb .sgpb-options-content .sgpb-squares{display:flex;flex-wrap:wrap;justify-content:space-around;margin-left:8.75vw;width:350px;height:350px}.sgpb .sgpb-options-content .sgpb-squares__square{background:#2873eb 0 0 no-repeat padding-box;opacity:.4;width:100px;height:100px}.sgpb .sgpb-options-content .sgpb-squares__square:hover{cursor:pointer}.sgpb .sgpb-options-content .sgpb-squares__square_leftRounded{border-radius:5px 0 0 5px}.sgpb .sgpb-options-content .sgpb-squares__square_rightRounded{border-radius:0 5px 5px 0}.sgpb .sgpb-options-content .sgpb-squares__square.active,.sgpb .sgpb-options-content .sgpb-squares__square:hover{background:#2873eb 0 0 no-repeat padding-box;box-shadow:0 3px 10px rgba(40,115,235,.8);opacity:1}.sgpb .sgpb-options-content .sgpb-customJsOrCss_text{font-size:15px}.sgpb .sgpb-options-content .sgpb-customJsOrCss .formItem__title{font-size:15px}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper *{font-family:"Segoe UI Regular"}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .subFormItem__title{font-size:20px;color:#000}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button{background:#d8e6fc;border-radius:3px;color:#2873eb;border-color:transparent;width:120px;height:47px;display:inline-flex;justify-content:center;align-items:center;font-size:16px;font-weight:700}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button.active,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button:focus,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button:hover,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button.active,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button:focus,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button:hover{color:#fff;background-color:#2873eb;box-shadow:none}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button-disabled,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button-disabled{background-color:#d8e6fc!important;opacity:.34!important;cursor:default!important;color:#2873eb!important}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button-bg-arrows,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button-bg-arrows{background-image:url(../svg/arrow_cross.svg);background-color:rgba(216,230,252,.34)!important;background-repeat:no-repeat;background-position:center;opacity:1!important}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .wp-picker-container button{margin:0 10px 0 0}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .wp-picker-container .wp-picker-holder{position:absolute}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .wp-picker-container .wp-picker-input-wrap .sgpb-color-picker{padding:0 5px!important;line-height:2.1!important}.sgpb .sgpb-options-content .icons__item:hover{cursor:pointer}.sgpb .sgpb-options-content .icons_blue{background:#b5caec!important;color:#2873eb!important}.sgpb .sgpb-options-content .icons_pink{background:#ffcece!important;color:#c12121!important}.sgpb .sgpb-options-content .icons_gray{background:#c7c7c7!important;color:#333!important}.sgpb .sgpb-subscription-popup-options .dimensionForm{width:100%}.sgpb .sgpb-subscription-popup-options .dimensionForm .sgpb-choice-wrapper{margin-bottom:20px}.sgpb .sgpb-subscription .search-box{display:none}.sgpb .sgpb-subscription .table>thead>tr>th{vertical-align:middle}.sgpb .sgpb-license:nth-child(odd){margin-right:30px}.sgpb .sgpb-license-block{box-shadow:0 0 30px rgba(0,0,0,.2);border-radius:5px;width:48%}.sgpb .sgpb-license-border{top:0;position:absolute;height:2px;left:5%;width:90%}.sgpb .sgpb-license-border.active{background:#00ae5d}.sgpb .sgpb-license-border.inactive{background:#c00}.sgpb .sgpb-license__status{display:flex;align-items:center}.sgpb .sgpb-license__status .active{width:27px;height:27px;border:5px solid #00ae5d;border-radius:50%;margin-right:5px}.sgpb .sgpb-license__status .inactive{width:27px;height:27px;border:5px solid #c00;border-radius:50%;margin-right:5px}.sgpb .sgpb-cursor-pointer{cursor:pointer}.sgpb .sgpb-display-flex{display:flex!important}.sgpb .sgpb-display-block{display:block!important}.sgpb .sgpb-display-grid{display:grid!important}.sgpb .sgpb-display-inline-flex{display:inline-flex!important}.sgpb .sgpb-display-inline-block{display:inline-block!important}.sgpb .sgpb-display-inline-grid{display:inline-grid!important}.sgpb .sgpb-display-none{display:none!important}.sgpb .sgpb-justify-content-between{justify-content:space-between!important}.sgpb .sgpb-justify-content-around{justify-content:space-around!important}.sgpb .sgpb-justify-content-center{justify-content:center!important}.sgpb .sgpb-justify-content-flex-end{justify-content:flex-end}.sgpb .sgpb-flex-direction-column{flex-direction:column!important}.sgpb .sgpb-flex-direction-column-reverse{flex-direction:column-reverse!important}.sgpb .sgpb-flex-direction-row{flex-direction:row!important}.sgpb .sgpb-flex-direction-row-reverse{flex-direction:row-reverse!important}.sgpb .sgpb-flex-container{display:flex!important;align-items:stretch!important}.sgpb .sgpb-flex-100{flex:0 0 100px}.sgpb .sgpb-flex-200{flex:0 0 200px}.sgpb .sgpb-flex-220{flex:0 0 220px}.sgpb .sgpb-flex-250{flex:0 0 250px}.sgpb .sgpb-flex-auto{flex:auto}.sgpb .sgpb-align-item-center{align-items:center!important}.sgpb .sgpb-align-item-start{align-items:start!important}.sgpb .sgpb-align-item-baseline{align-items:baseline!important}.sgpb .sgpb-align-item-stretch{align-items:stretch!important}.sgpb .sgpb-position-relative{position:relative!important}.sgpb .sgpb-position-absolute{position:absolute!important}.sgpb .sgpb-position-fixed{position:fixed!important}.sgpb .sgpb-position-sticky{position:-webkit-sticky!important;position:sticky!important;top:10px!important}.sgpb .sgpb-margin-0{margin:0!important}.sgpb .sgpb-margin-5{margin:5px!important}.sgpb .sgpb-margin-10{margin:10px!important}.sgpb .sgpb-margin-20{margin:20px!important}.sgpb .sgpb-margin-30{margin:30px!important}.sgpb .sgpb-margin-40{margin:40px!important}.sgpb .sgpb-margin-50{margin:50px!important}.sgpb .sgpb-margin-auto{margin:0 auto!important}.sgpb .sgpb-margin-top-0{margin-top:0!important}.sgpb .sgpb-margin-top-5{margin-top:5px!important}.sgpb .sgpb-margin-top-10{margin-top:10px!important}.sgpb .sgpb-margin-top-20{margin-top:20px!important}.sgpb .sgpb-margin-top-30{margin-top:30px!important}.sgpb .sgpb-margin-top-40{margin-top:40px!important}.sgpb .sgpb-margin-top-50{margin-top:50px!important}.sgpb .sgpb-margin-bottom-0{margin-bottom:0!important}.sgpb .sgpb-margin-bottom-5{margin-bottom:5px!important}.sgpb .sgpb-margin-bottom-10{margin-bottom:10px!important}.sgpb .sgpb-margin-bottom-20{margin-bottom:20px!important}.sgpb .sgpb-margin-bottom-30{margin-bottom:30px!important}.sgpb .sgpb-margin-bottom-40{margin-bottom:40px!important}.sgpb .sgpb-margin-bottom-50{margin-bottom:50px!important}.sgpb .sgpb-margin-left-0{margin-left:0!important}.sgpb .sgpb-margin-left-5{margin-left:5px!important}.sgpb .sgpb-margin-left-10{margin-left:10px!important}.sgpb .sgpb-margin-left-20{margin-left:20px!important}.sgpb .sgpb-margin-left-30{margin-left:30px!important}.sgpb .sgpb-margin-left-40{margin-left:40px!important}.sgpb .sgpb-margin-left-50{margin-left:50px!important}.sgpb .sgpb-margin-right-0{margin-right:0!important}.sgpb .sgpb-margin-right-5{margin-right:5px!important}.sgpb .sgpb-margin-right-10{margin-right:10px!important}.sgpb .sgpb-margin-right-20{margin-right:20px!important}.sgpb .sgpb-margin-right-30{margin-right:30px!important}.sgpb .sgpb-margin-right-40{margin-right:40px!important}.sgpb .sgpb-margin-right-50{margin-right:50px!important}.sgpb .sgpb-margin-x-0{margin-left:0!important;margin-right:0!important}.sgpb .sgpb-margin-x-5{margin-left:5px!important;margin-right:5px!important}.sgpb .sgpb-margin-x-7{margin-left:7px!important;margin-right:7px!important}.sgpb .sgpb-margin-x-10{margin-left:10px!important;margin-right:10px!important}.sgpb .sgpb-margin-x-20{margin-left:20px!important;margin-right:20px!important}.sgpb .sgpb-margin-x-30{margin-left:30px!important;margin-right:30px!important}.sgpb .sgpb-margin-x-40{margin-left:40px!important;margin-right:40px!important}.sgpb .sgpb-margin-x-50{margin-left:50px!important;margin-right:50px!important}.sgpb .sgpb-margin-y-0{margin-top:0!important;margin-bottom:0!important}.sgpb .sgpb-margin-y-5{margin-top:5px!important;margin-bottom:5px!important}.sgpb .sgpb-margin-y-5-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-10{margin-top:10px!important;margin-bottom:10px!important}.sgpb .sgpb-margin-y-10-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-20{margin-top:20px!important;margin-bottom:20px!important}.sgpb .sgpb-margin-y-20-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-30{margin-top:30px!important;margin-bottom:30px!important}.sgpb .sgpb-margin-y-30-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-40{margin-top:40px!important;margin-bottom:40px!important}.sgpb .sgpb-margin-y-40-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-50{margin-top:50px!important;margin-bottom:50px!important}.sgpb .sgpb-margin-y-50-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-padding-0{padding:0!important}.sgpb .sgpb-padding-5{padding:5px!important}.sgpb .sgpb-padding-10{padding:10px!important}.sgpb .sgpb-padding-20{padding:20px!important}.sgpb .sgpb-padding-30{padding:30px!important}.sgpb .sgpb-padding-40{padding:40px!important}.sgpb .sgpb-padding-50{padding:50px!important}.sgpb .sgpb-padding-top-0{padding-top:0!important}.sgpb .sgpb-padding-top-5{padding-top:5px!important}.sgpb .sgpb-padding-top-10{padding-top:10px!important}.sgpb .sgpb-padding-top-20{padding-top:20px!important}.sgpb .sgpb-padding-top-30{padding-top:30px!important}.sgpb .sgpb-padding-top-40{padding-top:40px!important}.sgpb .sgpb-padding-top-50{padding-top:50px!important}.sgpb .sgpb-padding-bottom-0{padding-bottom:0!important}.sgpb .sgpb-padding-bottom-5{padding-bottom:5px!important}.sgpb .sgpb-padding-bottom-10{padding-bottom:10px!important}.sgpb .sgpb-padding-bottom-20{padding-bottom:20px!important}.sgpb .sgpb-padding-bottom-30{padding-bottom:30px!important}.sgpb .sgpb-padding-bottom-40{padding-bottom:40px!important}.sgpb .sgpb-padding-bottom-50{padding-bottom:50px!important}.sgpb .sgpb-padding-left-0{padding-left:0!important}.sgpb .sgpb-padding-left-5{padding-left:5px!important}.sgpb .sgpb-padding-left-10{padding-left:10px!important}.sgpb .sgpb-padding-left-20{padding-left:20px!important}.sgpb .sgpb-padding-left-30{padding-left:30px!important}.sgpb .sgpb-padding-left-40{padding-left:40px!important}.sgpb .sgpb-padding-left-50{padding-left:50px!important}.sgpb .sgpb-padding-right-0{padding-right:0!important}.sgpb .sgpb-padding-right-5{padding-right:5px!important}.sgpb .sgpb-padding-right-10{padding-right:10px!important}.sgpb .sgpb-padding-right-20{padding-right:20px!important}.sgpb .sgpb-padding-right-30{padding-right:30px!important}.sgpb .sgpb-padding-right-40{padding-right:40px!important}.sgpb .sgpb-padding-right-50{padding-right:50px!important}.sgpb .sgpb-padding-x-0{padding-left:0!important;padding-right:0!important}.sgpb .sgpb-padding-x-5{padding-left:5px!important;padding-right:5px!important}.sgpb .sgpb-padding-x-10{padding-left:10px!important;padding-right:10px!important}.sgpb .sgpb-padding-x-20{padding-left:20px!important;padding-right:20px!important}.sgpb .sgpb-padding-x-30{padding-left:30px!important;padding-right:30px!important}.sgpb .sgpb-padding-x-40{padding-left:40px!important;padding-right:40px!important}.sgpb .sgpb-padding-x-50{padding-left:50px!important;padding-right:50px!important}.sgpb .sgpb-padding-y-0{padding-top:0!important;padding-bottom:0!important}.sgpb .sgpb-padding-y-5{padding-top:5px!important;padding-bottom:5px!important}.sgpb .sgpb-padding-y-10{padding-top:10px!important;padding-bottom:10px!important}.sgpb .sgpb-padding-y-20{padding-top:20px!important;padding-bottom:20px!important}.sgpb .sgpb-padding-y-30{padding-top:30px!important;padding-bottom:30px!important}.sgpb .sgpb-padding-y-40{padding-top:40px!important;padding-bottom:40px!important}.sgpb .sgpb-padding-y-50{padding-top:50px!important;padding-bottom:50px!important}.sgpb .sgpb-text-center{text-align:center}.sgpb .sgpb-text-nowrap{white-space:nowrap}.sgpb .sgpb-text-capitalize{text-transform:capitalize}.sgpb .sgpb-input[type=text],.sgpb .sgpb-input[type=url]{padding:10px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:1.2!important}.sgpb .sgpb-input[type=text]:active,.sgpb .sgpb-input[type=text]:focus,.sgpb .sgpb-input[type=url]:active,.sgpb .sgpb-input[type=url]:focus{border-color:transparent!important}.sgpb .sgpb input[type=radio],.sgpb .sgpb-radio-input{width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb .sgpb input[type=radio]:checked:before,.sgpb .sgpb-radio-input:checked:before{content:"";border-radius:50%;width:.5rem;height:.5rem;margin:0!important;background-color:#2873eb}.sgpb .sgpb input[type=radio]:active,.sgpb .sgpb input[type=radio]:focus,.sgpb .sgpb-radio-input:active,.sgpb .sgpb-radio-input:focus{outline:0!important}.sgpb .sgpb textarea:not(.js-contact-field-textarea){background:#ececec;border-radius:5px;width:100%;min-height:200px;border-color:transparent;padding:5px}.sgpb .sgpb textarea:not(.js-contact-field-textarea):active,.sgpb .sgpb textarea:not(.js-contact-field-textarea):focus{border-color:transparent;box-shadow:none;outline:0}.sgpb .sgpb-icons{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:22px;font-style:normal;border-radius:50%;display:flex;justify-content:center;align-items:center;width:40px;height:40px}.sgpb .sgpb-icons:hover{cursor:pointer}.sgpb .sgpb-width-100{width:100%}.sgpb .sgpb-width-90{width:90%}.sgpb .sgpb-width-80{width:80%}.sgpb .sgpb-width-70{width:70%}.sgpb .sgpb-width-60{width:60%}.sgpb .sgpb-width-50{width:50%}.sgpb .sgpb-width-40{width:40%}.sgpb .sgpb-width-35{width:35%}.sgpb .sgpb-width-30{width:30%}.sgpb .sgpb-width-20{width:20%}.sgpb .sgpb-width-10{width:10%}.sgpb .sgpb .question-mark{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:10px;line-height:16px;letter-spacing:0;color:#000;text-shadow:0 0 6px #000;background:#c6c6c6 0 0 no-repeat padding-box;width:18px;height:18px;border-radius:50%;display:flex;justify-content:center;align-items:center;margin-left:9px;margin-right:9px;font-weight:bolder;cursor:pointer}.sgpb .sgpb-info-text{color:#000;font:13px/14px Segoe UI Bold;width:215px;position:absolute;min-width:20px;min-height:13px;display:none;margin-top:-18px;margin-left:0;box-shadow:4px 0 6px rgba(0,0,0,.2);padding:5px;z-index:9999;background:#bcbcbc 0 0 no-repeat padding-box;border-radius:5px}.sgpb .sgpb-bg-black{background:#000}.sgpb .sgpb-bg-black__opacity-02{background:rgba(0,0,0,.02)}.sgpb .sgpb-bg-white{background-color:#fff}.sgpb .sgpb-border{border:1px solid}.sgpb .sgpb-border-top{border-top:1px solid}.sgpb .sgpb-border-bottom{border-bottom:1px solid}.sgpb .sgpb-border-left{border-left:1px solid}.sgpb .sgpb-border-right{border-right:1px solid}.sgpb .sgpb-border-color-black{border-color:#000}.sgpb .sgpb-border-radius-5px{border-radius:5px}.sgpb .sgpb-border-radius-50{border-radius:50%}.sgpb .sgpb-border-radius-50:active,.sgpb .sgpb-border-radius-50:focus{border-radius:50%}.sgpb .sgpb-unlock-options{display:flex;align-items:center;justify-content:space-between;background:#2873eb;border-radius:20px;opacity:1!important;cursor:pointer}.sgpb .sgpb-unlock-options *{opacity:1!important}.sgpb .sgpb-unlock-options__icon{box-shadow:0 0 6px rgba(40,115,235,.8);background:#fff;border-radius:20px;display:inline-flex;align-items:center;justify-content:center;width:60px;height:60px}.sgpb .sgpb-unlock-options__icon img{width:55px;height:55px}.sgpb .sgpb-unlock-options__title{margin-left:10px!important;padding:0 10px 0 0!important;font-weight:700!important;color:#fff!important}.sgpb .sgpb-tabs{display:flex;align-items:center;justify-content:start;border-bottom:2px solid rgba(0,0,0,.2)}.sgpb .sgpb-tabs .sgpb-tab-link{color:#000;font-size:20px;padding:15px 40px;font-weight:600;margin-bottom:-2px;cursor:pointer}.sgpb .sgpb-tabs .sgpb-tab-active{color:#2873eb;border-bottom:2px solid #2873eb}.sgpb .sgpb-onOffSwitch{position:relative;width:60px}.sgpb .sgpb-onOffSwitch__label{display:block;background:#e6e6e6;overflow:hidden;cursor:pointer;border-radius:21px}.sgpb .sgpb-onOffSwitch-inner{display:block;width:200%;margin-left:-100%;transition:margin .3s ease-in 0s}.sgpb .sgpb-onOffSwitch-inner:after,.sgpb .sgpb-onOffSwitch-inner:before{display:block;float:left;width:50%;height:30px;padding:0;line-height:42px;font-size:16px;color:#000;font:bold 16px/27px Segoe UI Regular;box-sizing:border-box}.sgpb .sgpb-onOffSwitch-inner:before{content:"on";padding-top:0;padding-left:9px;background-color:#e6e6e6}.sgpb .sgpb-onOffSwitch-inner:after{content:"off";padding-right:10px;padding-top:0;background-color:#e6e6e6;text-align:right}.sgpb .sgpb-onOffSwitch-switch{display:block;width:26px;height:26px;background:#757575;position:absolute;top:2px;right:32px;border-radius:50%;transition:all .3s ease-in 0s}.sgpb .sgpb-onOffSwitch input[type=checkbox]{visibility:hidden;position:absolute;width:100%!important;height:100%!important;margin:0!important}.sgpb .sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-inner{margin-left:0}.sgpb .sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-switch{right:2px;background-color:#2873eb}.sgpb .sgpb .formItem{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;margin-top:20px;margin-bottom:20px}.sgpb .sgpb .formItem *{color:#000}.sgpb .sgpb .formItem-label{font-size:17px;font-weight:700;margin-right:20px}.sgpb .sgpb .formItem .sgpb-option-disable,.sgpb .sgpb .formItem.sgpb-option-disable{background:#b2c8ec2b}.sgpb .sgpb .formItem .sgpb-option-disable *,.sgpb .sgpb .formItem.sgpb-option-disable *{opacity:.7}.sgpb .sgpb .formItem .sgpb-option-disable label,.sgpb .sgpb .formItem.sgpb-option-disable label{cursor:no-drop}.sgpb .sgpb .formItem .sgpb-option-disable .sgpb-info-text,.sgpb .sgpb .formItem .sgpb-option-disable .sgpb-info-wrapper,.sgpb .sgpb .formItem.sgpb-option-disable .sgpb-info-text,.sgpb .sgpb .formItem.sgpb-option-disable .sgpb-info-wrapper{opacity:1}.sgpb .sgpb .formItem__title{font-size:17px;font-weight:700;margin-right:20px;color:#000}.sgpb .sgpb .formItem .subFormItem .wp-picker-container button{margin:0 6px}.sgpb .sgpb .formItem .subFormItem .wp-picker-container .wp-picker-holder{position:absolute}.sgpb .sgpb .formItem .subFormItem .wp-picker-container .wp-picker-input-wrap .sgpb-color-picker{padding:0 5px!important;line-height:2.1!important}.sgpb .sgpb .formItem .subFormItem__title{font-size:15px;color:#000}.sgpb .sgpb .formItem .inputBlock{margin-right:30px}.sgpb .sgpb .formItem .inputBlock input:not(input[type=search]){padding:5px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important;height:auto!important}.sgpb .sgpb .formItem .inputBlock input:not(input[type=search]):active,.sgpb .sgpb .formItem .inputBlock input:not(input[type=search]):focus{border-color:transparent!important}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px 15px!important;border-radius:5px!important;background-color:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus{border-color:transparent!important}.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs){width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):checked:before{content:"E";font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:15px;color:#2873eb;position:relative;top:4px;font-weight:600;left:2px}.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):active,.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):focus{outline:0!important}.sgpb .sgpb-shadow-black{box-shadow:0 0 30px rgba(0,0,0,.5)}.sgpb .sgpb-shadow-black-10{box-shadow:0 0 10px rgba(0,0,0,.5)}.sgpb .sgpb-overflow-auto{overflow:auto}.sgpb .sgpb-overflow-hidden{overflow:hidden}.sgpb .sgpb-nowrap{white-space:nowrap}.sgpb .sgpb-list-group{display:flex;flex-direction:column}.sgpb .sgpb-list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#000;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.sgpb .sgpb-list-group-item.active,.sgpb .sgpb-list-group-item:hover{background-color:rgba(0,127,225,.36)}.sgpb .sgpb-list-group-flush>.sgpb-list-group-item{border-width:0 0 1px}.sgpb .sgpb-list-group-flush>.sgpb-list-group-item:last-child{border-bottom-width:0}@media screen and (max-width:1250px) and (min-width:1100px){.sgpb .sgpb .sgpb-options-menu{padding:12px}.sgpb .sgpb .sgpb-options-menu h3{font-size:14px}.sgpb .sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:0 3px!important;line-height:1.7!important;margin:0 2px!important}.sgpb .edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1350px) and (min-width:1250px){.sgpb .sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.sgpb .edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1500px) and (min-width:1310px){.sgpb .sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.sgpb .edit-post-meta-boxes-area .postbox>.inside{padding:0}}.sgpb-cursor-pointer{cursor:pointer}.sgpb-display-flex{display:flex!important}.sgpb-display-block{display:block!important}.sgpb-display-grid{display:grid!important}.sgpb-display-inline-flex{display:inline-flex!important}.sgpb-display-inline-block{display:inline-block!important}.sgpb-display-inline-grid{display:inline-grid!important}.sgpb-display-none{display:none!important}.sgpb-justify-content-between{justify-content:space-between!important}.sgpb-justify-content-around{justify-content:space-around!important}.sgpb-justify-content-center{justify-content:center!important}.sgpb-justify-content-flex-end{justify-content:flex-end}.sgpb-flex-direction-column{flex-direction:column!important}.sgpb-flex-direction-column-reverse{flex-direction:column-reverse!important}.sgpb-flex-direction-row{flex-direction:row!important}.sgpb-flex-direction-row-reverse{flex-direction:row-reverse!important}.sgpb-flex-container{display:flex!important;align-items:stretch!important}.sgpb-flex-100{flex:0 0 100px}.sgpb-flex-200{flex:0 0 200px}.sgpb-flex-220{flex:0 0 220px}.sgpb-flex-250{flex:0 0 250px}.sgpb-flex-auto{flex:auto}.sgpb-align-item-center{align-items:center!important}.sgpb-align-item-start{align-items:start!important}.sgpb-align-item-baseline{align-items:baseline!important}.sgpb-align-item-stretch{align-items:stretch!important}.sgpb-position-relative{position:relative!important}.sgpb-position-absolute{position:absolute!important}.sgpb-position-fixed{position:fixed!important}.sgpb-position-sticky{position:-webkit-sticky!important;position:sticky!important;top:10px!important}.sgpb-margin-0{margin:0!important}.sgpb-margin-5{margin:5px!important}.sgpb-margin-10{margin:10px!important}.sgpb-margin-20{margin:20px!important}.sgpb-margin-30{margin:30px!important}.sgpb-margin-40{margin:40px!important}.sgpb-margin-50{margin:50px!important}.sgpb-margin-auto{margin:0 auto!important}.sgpb-margin-top-0{margin-top:0!important}.sgpb-margin-top-5{margin-top:5px!important}.sgpb-margin-top-10{margin-top:10px!important}.sgpb-margin-top-20{margin-top:20px!important}.sgpb-margin-top-30{margin-top:30px!important}.sgpb-margin-top-40{margin-top:40px!important}.sgpb-margin-top-50{margin-top:50px!important}.sgpb-margin-bottom-0{margin-bottom:0!important}.sgpb-margin-bottom-5{margin-bottom:5px!important}.sgpb-margin-bottom-10{margin-bottom:10px!important}.sgpb-margin-bottom-20{margin-bottom:20px!important}.sgpb-margin-bottom-30{margin-bottom:30px!important}.sgpb-margin-bottom-40{margin-bottom:40px!important}.sgpb-margin-bottom-50{margin-bottom:50px!important}.sgpb-margin-left-0{margin-left:0!important}.sgpb-margin-left-5{margin-left:5px!important}.sgpb-margin-left-10{margin-left:10px!important}.sgpb-margin-left-20{margin-left:20px!important}.sgpb-margin-left-30{margin-left:30px!important}.sgpb-margin-left-40{margin-left:40px!important}.sgpb-margin-left-50{margin-left:50px!important}.sgpb-margin-right-0{margin-right:0!important}.sgpb-margin-right-5{margin-right:5px!important}.sgpb-margin-right-10{margin-right:10px!important}.sgpb-margin-right-20{margin-right:20px!important}.sgpb-margin-right-30{margin-right:30px!important}.sgpb-margin-right-40{margin-right:40px!important}.sgpb-margin-right-50{margin-right:50px!important}.sgpb-margin-x-0{margin-left:0!important;margin-right:0!important}.sgpb-margin-x-5{margin-left:5px!important;margin-right:5px!important}.sgpb-margin-x-7{margin-left:7px!important;margin-right:7px!important}.sgpb-margin-x-10{margin-left:10px!important;margin-right:10px!important}.sgpb-margin-x-20{margin-left:20px!important;margin-right:20px!important}.sgpb-margin-x-30{margin-left:30px!important;margin-right:30px!important}.sgpb-margin-x-40{margin-left:40px!important;margin-right:40px!important}.sgpb-margin-x-50{margin-left:50px!important;margin-right:50px!important}.sgpb-margin-y-0{margin-top:0!important;margin-bottom:0!important}.sgpb-margin-y-5{margin-top:5px!important;margin-bottom:5px!important}.sgpb-margin-y-5-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-10{margin-top:10px!important;margin-bottom:10px!important}.sgpb-margin-y-10-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-20{margin-top:20px!important;margin-bottom:20px!important}.sgpb-margin-y-20-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-30{margin-top:30px!important;margin-bottom:30px!important}.sgpb-margin-y-30-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-40{margin-top:40px!important;margin-bottom:40px!important}.sgpb-margin-y-40-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-50{margin-top:50px!important;margin-bottom:50px!important}.sgpb-margin-y-50-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-padding-0{padding:0!important}.sgpb-padding-5{padding:5px!important}.sgpb-padding-10{padding:10px!important}.sgpb-padding-20{padding:20px!important}.sgpb-padding-30{padding:30px!important}.sgpb-padding-40{padding:40px!important}.sgpb-padding-50{padding:50px!important}.sgpb-padding-top-0{padding-top:0!important}.sgpb-padding-top-5{padding-top:5px!important}.sgpb-padding-top-10{padding-top:10px!important}.sgpb-padding-top-20{padding-top:20px!important}.sgpb-padding-top-30{padding-top:30px!important}.sgpb-padding-top-40{padding-top:40px!important}.sgpb-padding-top-50{padding-top:50px!important}.sgpb-padding-bottom-0{padding-bottom:0!important}.sgpb-padding-bottom-5{padding-bottom:5px!important}.sgpb-padding-bottom-10{padding-bottom:10px!important}.sgpb-padding-bottom-20{padding-bottom:20px!important}.sgpb-padding-bottom-30{padding-bottom:30px!important}.sgpb-padding-bottom-40{padding-bottom:40px!important}.sgpb-padding-bottom-50{padding-bottom:50px!important}.sgpb-padding-left-0{padding-left:0!important}.sgpb-padding-left-5{padding-left:5px!important}.sgpb-padding-left-10{padding-left:10px!important}.sgpb-padding-left-20{padding-left:20px!important}.sgpb-padding-left-30{padding-left:30px!important}.sgpb-padding-left-40{padding-left:40px!important}.sgpb-padding-left-50{padding-left:50px!important}.sgpb-padding-right-0{padding-right:0!important}.sgpb-padding-right-5{padding-right:5px!important}.sgpb-padding-right-10{padding-right:10px!important}.sgpb-padding-right-20{padding-right:20px!important}.sgpb-padding-right-30{padding-right:30px!important}.sgpb-padding-right-40{padding-right:40px!important}.sgpb-padding-right-50{padding-right:50px!important}.sgpb-padding-x-0{padding-left:0!important;padding-right:0!important}.sgpb-padding-x-5{padding-left:5px!important;padding-right:5px!important}.sgpb-padding-x-10{padding-left:10px!important;padding-right:10px!important}.sgpb-padding-x-20{padding-left:20px!important;padding-right:20px!important}.sgpb-padding-x-30{padding-left:30px!important;padding-right:30px!important}.sgpb-padding-x-40{padding-left:40px!important;padding-right:40px!important}.sgpb-padding-x-50{padding-left:50px!important;padding-right:50px!important}.sgpb-padding-y-0{padding-top:0!important;padding-bottom:0!important}.sgpb-padding-y-5{padding-top:5px!important;padding-bottom:5px!important}.sgpb-padding-y-10{padding-top:10px!important;padding-bottom:10px!important}.sgpb-padding-y-20{padding-top:20px!important;padding-bottom:20px!important}.sgpb-padding-y-30{padding-top:30px!important;padding-bottom:30px!important}.sgpb-padding-y-40{padding-top:40px!important;padding-bottom:40px!important}.sgpb-padding-y-50{padding-top:50px!important;padding-bottom:50px!important}.sgpb-text-center{text-align:center}.sgpb-text-nowrap{white-space:nowrap}.sgpb-text-capitalize{text-transform:capitalize}.sgpb-input[type=text],.sgpb-input[type=url]{padding:10px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:1.2!important}.sgpb-input[type=text]:active,.sgpb-input[type=text]:focus,.sgpb-input[type=url]:active,.sgpb-input[type=url]:focus{border-color:transparent!important}.sgpb input[type=radio],.sgpb-radio-input{width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb input[type=radio]:checked:before,.sgpb-radio-input:checked:before{content:"";border-radius:50%;width:.5rem;height:.5rem;margin:0!important;background-color:#2873eb}.sgpb input[type=radio]:active,.sgpb input[type=radio]:focus,.sgpb-radio-input:active,.sgpb-radio-input:focus{outline:0!important}.sgpb textarea:not(.js-contact-field-textarea){background:#ececec;border-radius:5px;width:100%;min-height:200px;border-color:transparent;padding:5px}.sgpb textarea:not(.js-contact-field-textarea):active,.sgpb textarea:not(.js-contact-field-textarea):focus{border-color:transparent;box-shadow:none;outline:0}.sgpb-icons{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:22px;font-style:normal;border-radius:50%;display:flex;justify-content:center;align-items:center;width:40px;height:40px}.sgpb-icons:hover{cursor:pointer}.sgpb-width-100{width:100%}.sgpb-width-90{width:90%}.sgpb-width-80{width:80%}.sgpb-width-70{width:70%}.sgpb-width-60{width:60%}.sgpb-width-50{width:50%}.sgpb-width-40{width:40%}.sgpb-width-35{width:35%}.sgpb-width-30{width:30%}.sgpb-width-20{width:20%}.sgpb-width-10{width:10%}.sgpb .question-mark{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:10px;line-height:16px;letter-spacing:0;color:#000;text-shadow:0 0 6px #000;background:#c6c6c6 0 0 no-repeat padding-box;width:18px;height:18px;border-radius:50%;display:flex;justify-content:center;align-items:center;margin-left:9px;margin-right:9px;font-weight:bolder;cursor:pointer}.sgpb-info-text{color:#000;font:13px/14px Segoe UI Bold;width:215px;position:absolute;min-width:20px;min-height:13px;display:none;margin-top:-18px;margin-left:0;box-shadow:4px 0 6px rgba(0,0,0,.2);padding:5px;z-index:9999;background:#bcbcbc 0 0 no-repeat padding-box;border-radius:5px}.sgpb-bg-black{background:#000}.sgpb-bg-black__opacity-02{background:rgba(0,0,0,.02)}.sgpb-bg-white{background-color:#fff}.sgpb-border{border:1px solid}.sgpb-border-top{border-top:1px solid}.sgpb-border-bottom{border-bottom:1px solid}.sgpb-border-left{border-left:1px solid}.sgpb-border-right{border-right:1px solid}.sgpb-border-color-black{border-color:#000}.sgpb-border-radius-5px{border-radius:5px}.sgpb-border-radius-50{border-radius:50%}.sgpb-border-radius-50:active,.sgpb-border-radius-50:focus{border-radius:50%}.sgpb-unlock-options{display:flex;align-items:center;justify-content:space-between;background:#2873eb;border-radius:20px;opacity:1!important;cursor:pointer}.sgpb-unlock-options *{opacity:1!important}.sgpb-unlock-options__icon{box-shadow:0 0 6px rgba(40,115,235,.8);background:#fff;border-radius:20px;display:inline-flex;align-items:center;justify-content:center;width:60px;height:60px}.sgpb-unlock-options__icon img{width:55px;height:55px}.sgpb-unlock-options__title{margin-left:10px!important;padding:0 10px 0 0!important;font-weight:700!important;color:#fff!important}.sgpb-tabs{display:flex;align-items:center;justify-content:start;border-bottom:2px solid rgba(0,0,0,.2)}.sgpb-tabs .sgpb-tab-link{color:#000;font-size:20px;padding:15px 40px;font-weight:600;margin-bottom:-2px;cursor:pointer}.sgpb-tabs .sgpb-tab-active{color:#2873eb;border-bottom:2px solid #2873eb}.sgpb-onOffSwitch{position:relative;width:60px}.sgpb-onOffSwitch__label{display:block;background:#e6e6e6;overflow:hidden;cursor:pointer;border-radius:21px}.sgpb-onOffSwitch-inner{display:block;width:200%;margin-left:-100%;transition:margin .3s ease-in 0s}.sgpb-onOffSwitch-inner:after,.sgpb-onOffSwitch-inner:before{display:block;float:left;width:50%;height:30px;padding:0;line-height:42px;font-size:16px;color:#000;font:bold 16px/27px Segoe UI Regular;box-sizing:border-box}.sgpb-onOffSwitch-inner:before{content:"on";padding-top:0;padding-left:9px;background-color:#e6e6e6}.sgpb-onOffSwitch-inner:after{content:"off";padding-right:10px;padding-top:0;background-color:#e6e6e6;text-align:right}.sgpb-onOffSwitch-switch{display:block;width:26px;height:26px;background:#757575;position:absolute;top:2px;right:32px;border-radius:50%;transition:all .3s ease-in 0s}.sgpb-onOffSwitch input[type=checkbox]{visibility:hidden;position:absolute;width:100%!important;height:100%!important;margin:0!important}.sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-inner{margin-left:0}.sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-switch{right:2px;background-color:#2873eb}.sgpb .formItem{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;margin-top:20px;margin-bottom:20px}.sgpb .formItem *{color:#000}.sgpb .formItem-label{font-size:17px;font-weight:700;margin-right:20px}.sgpb .formItem .sgpb-option-disable,.sgpb .formItem.sgpb-option-disable{background:#b2c8ec2b}.sgpb .formItem .sgpb-option-disable *,.sgpb .formItem.sgpb-option-disable *{opacity:.7}.sgpb .formItem .sgpb-option-disable label,.sgpb .formItem.sgpb-option-disable label{cursor:no-drop}.sgpb .formItem .sgpb-option-disable .sgpb-info-text,.sgpb .formItem .sgpb-option-disable .sgpb-info-wrapper,.sgpb .formItem.sgpb-option-disable .sgpb-info-text,.sgpb .formItem.sgpb-option-disable .sgpb-info-wrapper{opacity:1}.sgpb .formItem__title{font-size:17px;font-weight:700;margin-right:20px;color:#000}.sgpb .formItem .subFormItem .wp-picker-container button{margin:0 6px}.sgpb .formItem .subFormItem .wp-picker-container .wp-picker-holder{position:absolute}.sgpb .formItem .subFormItem .wp-picker-container .wp-picker-input-wrap .sgpb-color-picker{padding:0 5px!important;line-height:2.1!important}.sgpb .formItem .subFormItem__title{font-size:15px;color:#000}.sgpb .formItem .inputBlock{margin-right:30px}.sgpb .formItem .inputBlock input:not(input[type=search]){padding:5px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important;height:auto!important}.sgpb .formItem .inputBlock input:not(input[type=search]):active,.sgpb .formItem .inputBlock input:not(input[type=search]):focus{border-color:transparent!important}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px 15px!important;border-radius:5px!important;background-color:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus{border-color:transparent!important}.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs){width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):checked:before{content:"E";font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:15px;color:#2873eb;position:relative;top:4px;font-weight:600;left:2px}.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):active,.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):focus{outline:0!important}.sgpb-shadow-black{box-shadow:0 0 30px rgba(0,0,0,.5)}.sgpb-shadow-black-10{box-shadow:0 0 10px rgba(0,0,0,.5)}.sgpb-overflow-auto{overflow:auto}.sgpb-overflow-hidden{overflow:hidden}.sgpb-nowrap{white-space:nowrap}.sgpb-list-group{display:flex;flex-direction:column}.sgpb-list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#000;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.sgpb-list-group-item.active,.sgpb-list-group-item:hover{background-color:rgba(0,127,225,.36)}.sgpb-list-group-flush>.sgpb-list-group-item{border-width:0 0 1px}.sgpb-list-group-flush>.sgpb-list-group-item:last-child{border-bottom-width:0}.post-type-popupbuilder .subtitle,.post-type-sgpbautoresponder .subtitle,.post-type-sgpbtemplate .subtitle{display:none}.post-type-popupbuilder form *,.post-type-sgpbautoresponder form *,.post-type-sgpbtemplate form *{font-family:Segoe UI Regular,Arial,Helvetica,sans-serif,FontAwesome}.post-type-popupbuilder form .tablenav.top,.post-type-sgpbautoresponder form .tablenav.top,.post-type-sgpbtemplate form .tablenav.top{height:40px}.post-type-popupbuilder form .tablenav.top .pagination-links,.post-type-sgpbautoresponder form .tablenav.top .pagination-links,.post-type-sgpbtemplate form .tablenav.top .pagination-links{display:none}.post-type-popupbuilder form .tablenav.top .actions,.post-type-sgpbautoresponder form .tablenav.top .actions,.post-type-sgpbtemplate form .tablenav.top .actions{display:flex}.post-type-popupbuilder form .tablenav.top .actions.bulkactions,.post-type-sgpbautoresponder form .tablenav.top .actions.bulkactions,.post-type-sgpbtemplate form .tablenav.top .actions.bulkactions{margin-right:8px}.post-type-popupbuilder form .tablenav.top .actions input,.post-type-popupbuilder form .tablenav.top .actions select,.post-type-sgpbautoresponder form .tablenav.top .actions input,.post-type-sgpbautoresponder form .tablenav.top .actions select,.post-type-sgpbtemplate form .tablenav.top .actions input,.post-type-sgpbtemplate form .tablenav.top .actions select{padding:10px 20px;border-radius:5px;background-color:#f1f1f1;border:2px solid transparent;line-height:1.2;margin:0}.post-type-popupbuilder form .tablenav.top .actions input:active,.post-type-popupbuilder form .tablenav.top .actions input:focus,.post-type-popupbuilder form .tablenav.top .actions select:active,.post-type-popupbuilder form .tablenav.top .actions select:focus,.post-type-sgpbautoresponder form .tablenav.top .actions input:active,.post-type-sgpbautoresponder form .tablenav.top .actions input:focus,.post-type-sgpbautoresponder form .tablenav.top .actions select:active,.post-type-sgpbautoresponder form .tablenav.top .actions select:focus,.post-type-sgpbtemplate form .tablenav.top .actions input:active,.post-type-sgpbtemplate form .tablenav.top .actions input:focus,.post-type-sgpbtemplate form .tablenav.top .actions select:active,.post-type-sgpbtemplate form .tablenav.top .actions select:focus{border-color:transparent;box-shadow:none}.post-type-popupbuilder form .tablenav.top .actions select,.post-type-sgpbautoresponder form .tablenav.top .actions select,.post-type-sgpbtemplate form .tablenav.top .actions select{padding-left:5px;min-width:120px}.post-type-popupbuilder form .tablenav.top .actions input,.post-type-sgpbautoresponder form .tablenav.top .actions input,.post-type-sgpbtemplate form .tablenav.top .actions input{font-family:"Segoe UI Regular";font-weight:500;margin-left:-2px;color:#fff;background:#2873eb;border-color:#2873eb;font-size:14px}.post-type-popupbuilder form .tablenav.top .actions input:hover,.post-type-sgpbautoresponder form .tablenav.top .actions input:hover,.post-type-sgpbtemplate form .tablenav.top .actions input:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#fff;color:#2873eb;border-color:#2873eb}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li{color:#fff}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li a,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li a,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li a{font-family:"Segoe UI Regular";color:#2873eb;font-weight:600;background:0 0;-webkit-border-radius:29px;-moz-border-radius:29px;border-radius:29px;padding:10px 30px;border:2px solid rgba(0,0,0,.14);line-height:1.2}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li a:focus,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li a:focus,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li a:focus{box-shadow:none;outline:0}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li a.current,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li a.current,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li a.current{color:#000}.post-type-popupbuilder form table,.post-type-sgpbautoresponder form table,.post-type-sgpbtemplate form table{border:none;box-shadow:0 0 15px #0000001A;padding:10px;margin-top:50px;border-collapse:separate}.post-type-popupbuilder form table input[type=checkbox],.post-type-sgpbautoresponder form table input[type=checkbox],.post-type-sgpbtemplate form table input[type=checkbox]{width:20px;height:20px;position:relative;border:1px solid #707070;box-shadow:none;transition:.05s border-color ease-in-out;line-height:0}.post-type-popupbuilder form table input[type=checkbox]:before,.post-type-sgpbautoresponder form table input[type=checkbox]:before,.post-type-sgpbtemplate form table input[type=checkbox]:before{content:'-';position:absolute;top:36%;left:17%;color:#fff;font-size:31px}.post-type-popupbuilder form table input[type=checkbox]:checked,.post-type-sgpbautoresponder form table input[type=checkbox]:checked,.post-type-sgpbtemplate form table input[type=checkbox]:checked{background:#2873eb;border-color:transparent}.post-type-popupbuilder form table input[type=checkbox]:checked::before,.post-type-sgpbautoresponder form table input[type=checkbox]:checked::before,.post-type-sgpbtemplate form table input[type=checkbox]:checked::before{content:"E";font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:13px;line-height:1.1;color:#fff}.post-type-popupbuilder form table .sgpb-switch .sg-switch-checkbox:checked+.sgpb-slider,.post-type-sgpbautoresponder form table .sgpb-switch .sg-switch-checkbox:checked+.sgpb-slider,.post-type-sgpbtemplate form table .sgpb-switch .sg-switch-checkbox:checked+.sgpb-slider{background-color:#2873eb}.post-type-popupbuilder form table thead input[type=checkbox],.post-type-sgpbautoresponder form table thead input[type=checkbox],.post-type-sgpbtemplate form table thead input[type=checkbox]{background:#2873eb}.post-type-popupbuilder form table thead tr *,.post-type-sgpbautoresponder form table thead tr *,.post-type-sgpbtemplate form table thead tr *{color:#000;font-family:"Segoe UI Regular";font-weight:600}.post-type-popupbuilder form table thead td,.post-type-popupbuilder form table thead th,.post-type-sgpbautoresponder form table thead td,.post-type-sgpbautoresponder form table thead th,.post-type-sgpbtemplate form table thead td,.post-type-sgpbtemplate form table thead th{border:none}.post-type-popupbuilder form table .check-column,.post-type-popupbuilder form table td,.post-type-sgpbautoresponder form table .check-column,.post-type-sgpbautoresponder form table td,.post-type-sgpbtemplate form table .check-column,.post-type-sgpbtemplate form table td{vertical-align:middle!important}.post-type-popupbuilder form table tbody tr,.post-type-sgpbautoresponder form table tbody tr,.post-type-sgpbtemplate form table tbody tr{background-color:#fff;position:relative}.post-type-popupbuilder form table tbody tr td,.post-type-popupbuilder form table tbody tr th,.post-type-sgpbautoresponder form table tbody tr td,.post-type-sgpbautoresponder form table tbody tr th,.post-type-sgpbtemplate form table tbody tr td,.post-type-sgpbtemplate form table tbody tr th{border-top:1px solid rgba(194,194,194,.31);color:#000}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select{padding:10px 20px;border-radius:5px;background-color:#f1f1f1;border:2px solid transparent;line-height:1.2;margin:0}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select:focus{border-color:transparent;box-shadow:none}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select{padding-left:5px;min-width:120px}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input{background:0 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:10px 15px;border:2px solid transparent;line-height:1.2;font-weight:600;cursor:pointer}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:focus{background:0 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:10px 15px;border:2px solid transparent;line-height:1.2;font-weight:600;cursor:pointer}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input{color:#fff!important;background:#2873eb;border-color:#2873eb}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:hover,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:hover,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:hover,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:hover,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:hover,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:hover,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:hover,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:hover,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#fff;color:#2873eb!important;border-color:#2873eb}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel{background:#fff;color:#000;border-color:#000}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus{background:#fff;color:#000;border-color:#000}.post-type-popupbuilder form table tr.sgpb-popups-table-selected-row,.post-type-sgpbautoresponder form table tr.sgpb-popups-table-selected-row,.post-type-sgpbtemplate form table tr.sgpb-popups-table-selected-row{background-color:rgba(40,115,235,.1)}.post-type-popupbuilder form table .row-actions,.post-type-sgpbautoresponder form table .row-actions,.post-type-sgpbtemplate form table .row-actions{display:none}.post-type-popupbuilder form table .column-options,.post-type-sgpbautoresponder form table .column-options,.post-type-sgpbtemplate form table .column-options{display:flex;justify-content:space-around}.post-type-popupbuilder form table .column-options .icon,.post-type-sgpbautoresponder form table .column-options .icon,.post-type-sgpbtemplate form table .column-options .icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%}.post-type-popupbuilder form table .column-options .icon_edit,.post-type-popupbuilder form table .column-options .icon_remove,.post-type-sgpbautoresponder form table .column-options .icon_edit,.post-type-sgpbautoresponder form table .column-options .icon_remove,.post-type-sgpbtemplate form table .column-options .icon_edit,.post-type-sgpbtemplate form table .column-options .icon_remove{width:40px;height:40px}.post-type-popupbuilder form table .column-options .icon_clone,.post-type-sgpbautoresponder form table .column-options .icon_clone,.post-type-sgpbtemplate form table .column-options .icon_clone{width:35px;height:35px}.post-type-popupbuilder form table .column-options .icon_blue,.post-type-sgpbautoresponder form table .column-options .icon_blue,.post-type-sgpbtemplate form table .column-options .icon_blue{background:#b5caec}.post-type-popupbuilder form table .column-options .icon_pink,.post-type-sgpbautoresponder form table .column-options .icon_pink,.post-type-sgpbtemplate form table .column-options .icon_pink{background:#ffcece}.post-type-popupbuilder form table .column-options .icon img,.post-type-sgpbautoresponder form table .column-options .icon img,.post-type-sgpbtemplate form table .column-options .icon img{cursor:pointer}.post-type-popupbuilder form table .column-counter div,.post-type-sgpbautoresponder form table .column-counter div,.post-type-sgpbtemplate form table .column-counter div{max-width:80px;display:flex;justify-content:space-around}.post-type-popupbuilder form table .column-counter div input,.post-type-sgpbautoresponder form table .column-counter div input,.post-type-sgpbtemplate form table .column-counter div input{background:#fff;color:#000;border-color:#000;border-radius:5px;line-height:1.2;padding:5px 10px;cursor:pointer}.post-type-popupbuilder form table .column-className input,.post-type-popupbuilder form table .column-shortcode input,.post-type-sgpbautoresponder form table .column-className input,.post-type-sgpbautoresponder form table .column-shortcode input,.post-type-sgpbtemplate form table .column-className input,.post-type-sgpbtemplate form table .column-shortcode input{background:0 0;border-width:1px;border-color:#c2c2c2}.post-type-popupbuilder form table .check-column,.post-type-sgpbautoresponder form table .check-column,.post-type-sgpbtemplate form table .check-column{padding:0 0 0 5px!important}.post-type-popupbuilder form table .column-title a,.post-type-sgpbautoresponder form table .column-title a,.post-type-sgpbtemplate form table .column-title a{color:#2873eb}.post-type-popupbuilder form table tfoot,.post-type-sgpbautoresponder form table tfoot,.post-type-sgpbtemplate form table tfoot{display:none}.post-type-popupbuilder form .tablenav.bottom,.post-type-sgpbautoresponder form .tablenav.bottom,.post-type-sgpbtemplate form .tablenav.bottom{display:none}.post-type-popupbuilder form .pagination-links,.post-type-sgpbautoresponder form .pagination-links,.post-type-sgpbtemplate form .pagination-links{display:flex;justify-content:flex-end;align-items:center;margin-top:30px;margin-bottom:30px;font-size:16px;font-weight:700}.post-type-popupbuilder form .pagination-links .disabled,.post-type-sgpbautoresponder form .pagination-links .disabled,.post-type-sgpbtemplate form .pagination-links .disabled{display:none}.post-type-popupbuilder form .pagination-links .paging-input,.post-type-sgpbautoresponder form .pagination-links .paging-input,.post-type-sgpbtemplate form .pagination-links .paging-input{order:-1}.post-type-popupbuilder form .pagination-links a.button,.post-type-sgpbautoresponder form .pagination-links a.button,.post-type-sgpbtemplate form .pagination-links a.button{background:0 0;border:none;font-size:22px;color:#000;font-weight:700;min-height:28px;line-height:1.2}.post-type-popupbuilder form .pagination-links a.button .screen-reader-text,.post-type-sgpbautoresponder form .pagination-links a.button .screen-reader-text,.post-type-sgpbtemplate form .pagination-links a.button .screen-reader-text{display:none}.post-type-popupbuilder form .pagination-links a.button:active,.post-type-popupbuilder form .pagination-links a.button:focus,.post-type-sgpbautoresponder form .pagination-links a.button:active,.post-type-sgpbautoresponder form .pagination-links a.button:focus,.post-type-sgpbtemplate form .pagination-links a.button:active,.post-type-sgpbtemplate form .pagination-links a.button:focus{background:0 0;border:none;font-size:22px;color:#000;font-weight:700;height:auto;min-height:auto;line-height:1.2;outline:0;box-shadow:none}.post-type-popupbuilder #wpwrap,.post-type-sgpbautoresponder #wpwrap,.post-type-sgpbtemplate #wpwrap{background:#fff}@media screen and (max-width:1250px) and (min-width:1100px){.sgpb .sgpb-options-menu{padding:12px}.sgpb .sgpb-options-menu h3{font-size:14px}.sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:0 3px!important;line-height:1.7!important;margin:0 2px!important}.edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1350px) and (min-width:1250px){.sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1500px) and (min-width:1310px){.sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.edit-post-meta-boxes-area .postbox>.inside{padding:0}}
     1@font-face{font-family:"Segoe UI Regular";src:url(../fonts/SegoeUI.woff) format("woff")}@font-face{font-family:"Segoe UI Bold";src:url(fonts/Segoe-UI-Bold.woff) format("woff")}@font-face{font-family:Glyphter;src:url(../fonts/Glyphter.woff) format("woff")}.sgpb *{box-sizing:border-box;font-family:Segoe UI Regular,Arial,Helvetica,sans-serif}.sgpb html{height:100%}.sgpb body{height:100%;margin:0;padding:0;overflow-x:hidden}.sgpb h1,.sgpb h2,.sgpb h3,.sgpb h4,.sgpb h5,.sgpb h6,.sgpb p{margin:0;padding:0}.sgpb input{outline:0}.sgpb button{cursor:pointer}.sgpb input[type=email]:focus,.sgpb input[type=number]:focus,.sgpb input[type=search]:focus,.sgpb input[type=text]:focus{box-shadow:none}.sgpb input[type=button]:hover,.sgpb input[type=submit]:hover{cursor:pointer}body.post-type-popupbuilder,body.post-type-sgpbautoresponder,body.post-type-sgpbtemplate{line-height:1.2}body.post-type-popupbuilder .sgpb-modal .inputBlock__title,body.post-type-popupbuilder .sgpb-wrapper .inputBlock__title,body.post-type-sgpbautoresponder .sgpb-modal .inputBlock__title,body.post-type-sgpbautoresponder .sgpb-wrapper .inputBlock__title,body.post-type-sgpbtemplate .sgpb-modal .inputBlock__title,body.post-type-sgpbtemplate .sgpb-wrapper .inputBlock__title{font-weight:600;font-size:17px}body.post-type-popupbuilder .sgpb-modal .text,body.post-type-popupbuilder .sgpb-wrapper .text,body.post-type-sgpbautoresponder .sgpb-modal .text,body.post-type-sgpbautoresponder .sgpb-wrapper .text,body.post-type-sgpbtemplate .sgpb-modal .text,body.post-type-sgpbtemplate .sgpb-wrapper .text{display:flex;align-items:center;color:#000;margin-bottom:10px}body.post-type-popupbuilder .sgpb-modal .sgpb-icons,body.post-type-popupbuilder .sgpb-wrapper .sgpb-icons,body.post-type-sgpbautoresponder .sgpb-modal .sgpb-icons,body.post-type-sgpbautoresponder .sgpb-wrapper .sgpb-icons,body.post-type-sgpbtemplate .sgpb-modal .sgpb-icons,body.post-type-sgpbtemplate .sgpb-wrapper .sgpb-icons{margin-right:10px;font-weight:400}body.post-type-popupbuilder .sgpb-modal .icons_blue,body.post-type-popupbuilder .sgpb-wrapper .icons_blue,body.post-type-sgpbautoresponder .sgpb-modal .icons_blue,body.post-type-sgpbautoresponder .sgpb-wrapper .icons_blue,body.post-type-sgpbtemplate .sgpb-modal .icons_blue,body.post-type-sgpbtemplate .sgpb-wrapper .icons_blue{background:#b5caec!important;color:#2873eb!important}body.post-type-popupbuilder .sgpb-modal .icons_pink,body.post-type-popupbuilder .sgpb-wrapper .icons_pink,body.post-type-sgpbautoresponder .sgpb-modal .icons_pink,body.post-type-sgpbautoresponder .sgpb-wrapper .icons_pink,body.post-type-sgpbtemplate .sgpb-modal .icons_pink,body.post-type-sgpbtemplate .sgpb-wrapper .icons_pink{background:#ffcece!important;color:#c12121!important}body.post-type-popupbuilder .sgpb-modal .icons_gray,body.post-type-popupbuilder .sgpb-wrapper .icons_gray,body.post-type-sgpbautoresponder .sgpb-modal .icons_gray,body.post-type-sgpbautoresponder .sgpb-wrapper .icons_gray,body.post-type-sgpbtemplate .sgpb-modal .icons_gray,body.post-type-sgpbtemplate .sgpb-wrapper .icons_gray{background:#c7c7c7!important;color:#333!important}body.post-type-popupbuilder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem,body.post-type-sgpbautoresponder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem,body.post-type-sgpbtemplate #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem{align-items:flex-end!important}body.post-type-popupbuilder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-add-rule,body.post-type-popupbuilder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-delete-rule,body.post-type-sgpbautoresponder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-add-rule,body.post-type-sgpbautoresponder #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-delete-rule,body.post-type-sgpbtemplate #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-add-rule,body.post-type-sgpbtemplate #autoresponderMetabox .popup-conditions-wrapper .sgpb-box-autoresponder-events .formItem .sgpb-rules-delete-rule{margin-bottom:10px}.post-type-popupbuilder .sgpb-wrapper .h1,.post-type-popupbuilder .sgpb-wrapper .h2,.post-type-popupbuilder .sgpb-wrapper .h3,.post-type-popupbuilder .sgpb-wrapper .h4,.post-type-popupbuilder .sgpb-wrapper .h5,.post-type-popupbuilder .sgpb-wrapper .h6,.post-type-popupbuilder .sgpb-wrapper h1,.post-type-popupbuilder .sgpb-wrapper h2,.post-type-popupbuilder .sgpb-wrapper h3,.post-type-popupbuilder .sgpb-wrapper h4,.post-type-popupbuilder .sgpb-wrapper h5,.post-type-popupbuilder .sgpb-wrapper h6,.post-type-sgpbautoresponder .sgpb-wrapper .h1,.post-type-sgpbautoresponder .sgpb-wrapper .h2,.post-type-sgpbautoresponder .sgpb-wrapper .h3,.post-type-sgpbautoresponder .sgpb-wrapper .h4,.post-type-sgpbautoresponder .sgpb-wrapper .h5,.post-type-sgpbautoresponder .sgpb-wrapper .h6,.post-type-sgpbautoresponder .sgpb-wrapper h1,.post-type-sgpbautoresponder .sgpb-wrapper h2,.post-type-sgpbautoresponder .sgpb-wrapper h3,.post-type-sgpbautoresponder .sgpb-wrapper h4,.post-type-sgpbautoresponder .sgpb-wrapper h5,.post-type-sgpbautoresponder .sgpb-wrapper h6,.post-type-sgpbtemplate .sgpb-wrapper .h1,.post-type-sgpbtemplate .sgpb-wrapper .h2,.post-type-sgpbtemplate .sgpb-wrapper .h3,.post-type-sgpbtemplate .sgpb-wrapper .h4,.post-type-sgpbtemplate .sgpb-wrapper .h5,.post-type-sgpbtemplate .sgpb-wrapper .h6,.post-type-sgpbtemplate .sgpb-wrapper h1,.post-type-sgpbtemplate .sgpb-wrapper h2,.post-type-sgpbtemplate .sgpb-wrapper h3,.post-type-sgpbtemplate .sgpb-wrapper h4,.post-type-sgpbtemplate .sgpb-wrapper h5,.post-type-sgpbtemplate .sgpb-wrapper h6{font-family:Segoe UI Regular,Arial,Helvetica,sans-serif}.post-type-popupbuilder .sgpb-wrapper code,.post-type-sgpbautoresponder .sgpb-wrapper code,.post-type-sgpbtemplate .sgpb-wrapper code{padding:2px 4px;font-size:90%;color:#2873eb;background-color:#f9f2f4;border-radius:4px}.post-type-popupbuilder #wpcontent,.post-type-sgpbautoresponder #wpcontent,.post-type-sgpbtemplate #wpcontent{background:#fff}.post-type-popupbuilder .dashicons,.post-type-popupbuilder .dashicons-before:before,.post-type-sgpbautoresponder .dashicons,.post-type-sgpbautoresponder .dashicons-before:before,.post-type-sgpbtemplate .dashicons,.post-type-sgpbtemplate .dashicons-before:before{font-family:dashicons}.post-type-popupbuilder .dashicons-menu-icon-sgpb,.post-type-popupbuilder .dashicons-menu-icon-sgpb:before,.post-type-sgpbautoresponder .dashicons-menu-icon-sgpb,.post-type-sgpbautoresponder .dashicons-menu-icon-sgpb:before,.post-type-sgpbtemplate .dashicons-menu-icon-sgpb,.post-type-sgpbtemplate .dashicons-menu-icon-sgpb:before{font-family:popupbuilder-icon}.post-type-popupbuilder a,.post-type-sgpbautoresponder a,.post-type-sgpbtemplate a{text-decoration:none}.post-type-popupbuilder a:focus,.post-type-popupbuilder a:hover,.post-type-sgpbautoresponder a:focus,.post-type-sgpbautoresponder a:hover,.post-type-sgpbtemplate a:focus,.post-type-sgpbtemplate a:hover{outline:0;text-decoration:none;box-shadow:none}.post-type-popupbuilder .edit-post-meta-boxes-area .postbox>.inside.inside,.post-type-sgpbautoresponder .edit-post-meta-boxes-area .postbox>.inside.inside,.post-type-sgpbtemplate .edit-post-meta-boxes-area .postbox>.inside.inside{border-bottom:none}.post-type-popupbuilder .select2,.post-type-sgpbautoresponder .select2,.post-type-sgpbtemplate .select2{min-width:190px;width:auto!important;line-height:1.2}.post-type-popupbuilder .select2 .select2-selection,.post-type-sgpbautoresponder .select2 .select2-selection,.post-type-sgpbtemplate .select2 .select2-selection{background:#f1f1f1;border:none!important;padding:7px;height:auto;min-height:49px;outline:0}.post-type-popupbuilder .select2 .select2-selection__rendered,.post-type-sgpbautoresponder .select2 .select2-selection__rendered,.post-type-sgpbtemplate .select2 .select2-selection__rendered{line-height:2.7!important;max-width:280px}.post-type-popupbuilder .select2 .select2-selection__arrow,.post-type-sgpbautoresponder .select2 .select2-selection__arrow,.post-type-sgpbtemplate .select2 .select2-selection__arrow{height:47px}.post-type-popupbuilder .select2 .select2-selection__arrow b,.post-type-sgpbautoresponder .select2 .select2-selection__arrow b,.post-type-sgpbtemplate .select2 .select2-selection__arrow b{border-color:#000 transparent transparent transparent}.post-type-popupbuilder .select2 .select2-selection--multiple,.post-type-sgpbautoresponder .select2 .select2-selection--multiple,.post-type-sgpbtemplate .select2 .select2-selection--multiple{padding:0 5px}.post-type-popupbuilder .select2 .select2-selection__choice,.post-type-sgpbautoresponder .select2 .select2-selection__choice,.post-type-sgpbtemplate .select2 .select2-selection__choice{display:inline-flex;flex-direction:row-reverse;background:#fff;padding:0 6px 0 10px;justify-content:space-between;align-items:center}.post-type-popupbuilder .select2 .select2-selection__choice__remove,.post-type-sgpbautoresponder .select2 .select2-selection__choice__remove,.post-type-sgpbtemplate .select2 .select2-selection__choice__remove{margin-left:10px}.post-type-popupbuilder .sgpb-reset-count-btn,.post-type-sgpbautoresponder .sgpb-reset-count-btn,.post-type-sgpbtemplate .sgpb-reset-count-btn{color:#c12121!important}.post-type-popupbuilder .sgpb-reset-count-btn:hover,.post-type-sgpbautoresponder .sgpb-reset-count-btn:hover,.post-type-sgpbtemplate .sgpb-reset-count-btn:hover{color:#0a4b78!important}.post-type-popupbuilder .sgpb-add-subscriber-header-spinner-column,.post-type-sgpbautoresponder .sgpb-add-subscriber-header-spinner-column,.post-type-sgpbtemplate .sgpb-add-subscriber-header-spinner-column{text-align:center;margin-top:10px}.post-type-popupbuilder .sgpb-add-subscriber-header-spinner-column .sgpb-subscribers-add-spinner,.post-type-sgpbautoresponder .sgpb-add-subscriber-header-spinner-column .sgpb-subscribers-add-spinner,.post-type-sgpbtemplate .sgpb-add-subscriber-header-spinner-column .sgpb-subscribers-add-spinner{margin:0}.sgpb .sgpb-btn,.sgpb .sgpb-btn:active,.sgpb .sgpb-btn:focus{background:0 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:10px 15px;border:2px solid transparent;line-height:1.2;font-weight:600;cursor:pointer}.sgpb .sgpb-btn-blue{color:#fff!important;background:#2873eb;border-color:#2873eb}.sgpb .sgpb-btn-blue:active,.sgpb .sgpb-btn-blue:focus,.sgpb .sgpb-btn-blue:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#fff;color:#2873eb!important;border-color:#2873eb}.sgpb .sgpb-btn-blue--outline{color:#2873eb!important;background:#fff;border-color:#2873eb}.sgpb .sgpb-btn-blue--outline:active,.sgpb .sgpb-btn-blue--outline:focus,.sgpb .sgpb-btn-blue--outline:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#2873eb;color:#fff!important;border-color:#2873eb}.sgpb .sgpb-btn-blue-light{color:#2873eb;background:rgba(0,102,255,.2);border-color:transparent}.sgpb .sgpb-btn-blue-light:active,.sgpb .sgpb-btn-blue-light:focus,.sgpb .sgpb-btn-blue-light:hover{box-shadow:none;background:rgba(0,102,255,.2);color:#2873eb!important;border-color:transparent}.sgpb .sgpb-btn-dark-outline,.sgpb .sgpb-btn-dark-outline:active,.sgpb .sgpb-btn-dark-outline:focus{background:#fff;color:#000;border-color:#000}.sgpb .sgpb-btn-danger{color:#c12121!important;background:#fcc}.sgpb .sgpb-btn-danger:active,.sgpb .sgpb-btn-danger:focus,.sgpb .sgpb-btn-danger:hover{box-shadow:none;background:#c12121;color:#fff!important;border-color:transparent}.sgpb .sgpb-btn-gray-light{color:#000;background-color:#f1f1f1}.sgpb .sgpb-btn-gray-light:active,.sgpb .sgpb-btn-gray-light:focus,.sgpb .sgpb-btn-gray-light:hover{background-color:#fff}.sgpb .sgpb-btn-more_extensions,.sgpb .sgpb-btn-more_extensions:active,.sgpb .sgpb-btn-more_extensions:focus,.sgpb .sgpb-btn-more_extensions:hover{box-shadow:0 0 6px rgba(1,185,255,.8);background:#01b9ff;color:#fff;border-color:#01b9ff;font:Bold 22px/28px Segoe UI Regular!important;padding:5px 34px}.sgpb .sgpb-btn--rounded{border-radius:39px}.sgpb .sgpb-btn--rounded:active,.sgpb .sgpb-btn--rounded:focus{-webkit-border-radius:39px;-moz-border-radius:39px;border-radius:39px}.sgpb .sgpb-btn-disabled,.sgpb .sgpb-btn-disabled:active,.sgpb .sgpb-btn-disabled:focus,.sgpb .sgpb-btn-disabled:hover{outline:0!important;cursor:no-drop!important;background:#c2c2c2!important;color:#707070!important;border-color:transparent!important;box-shadow:none!important}.sgpb .sgpb--group{display:flex}.sgpb .sgpb--group .sgpb-btn{margin-left:-2px;border-top-left-radius:0;border-bottom-left-radius:0}.sgpb .sgpb--group .sgpb-input{border-top-right-radius:0;border-bottom-right-radius:0}.sgpb .sgpb-header-h1{color:#000;text-align:left;font-size:40px;font-weight:700;letter-spacing:0}.sgpb .sgpb-header-h2{color:#000;text-align:left;font-size:35px;font-weight:700;letter-spacing:0}.sgpb .sgpb-header-h3{color:#000;text-align:left;font-size:30px;font-weight:700;letter-spacing:0}.sgpb .sgpb-header-h4{color:#000;text-align:left;font-size:25px;font-weight:700;letter-spacing:0}.sgpb .sgpb-cubes{width:40px;height:40px;align-content:center;position:relative;display:flex;z-index:9;flex-wrap:wrap}.sgpb .sgpb-cubes-mini{width:15px;height:15px;background:#fff;margin:2px;border-radius:2px}.sgpb .sgpb-cubes-mini_little{width:13px;height:13px}.sgpb .sgpb-box{height:90px;display:flex;align-items:center;box-shadow:0 0 20px rgba(0,0,0,.2);border-radius:18px;cursor:pointer;background:#fff;color:#000;flex:0 0 23%;margin:0 1%}.sgpb .sgpb-box-img{width:90px;height:90px;border-radius:18px;position:relative;margin-right:22px;transition:.4s}.sgpb .sgpb-box-text{font:Bold 20px/24px Segoe UI Regular!important}.sgpb .sgpb-box-plus{font-weight:bolder;position:absolute;right:-3%;bottom:-13%;border-radius:50%;transition:visibility 0s,opacity .3s linear;opacity:0;font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:20px;color:#fff;width:45px;height:45px;display:flex;align-items:center;justify-content:center;background:#2873eb 0 0 no-repeat padding-box;box-shadow:0 0 15px rgba(40,115,235,.3);margin-left:11px}.sgpb .sgpb-box-default{background:#f1f1f1}.sgpb .sgpb-box-default img{background:#fff}.sgpb .sgpb-box-active img{background:#2873eb}.sgpb .sgpb-box:hover img{transform:translate(-23px,-23px);box-shadow:0 0 20px rgba(0,0,0,.2)}.sgpb .sgpb-box:hover .sgpb-box-plus{opacity:1}.sgpb .sgpb-addPopup,.sgpb .sgpb-pro-extensions{flex-wrap:wrap}.sgpb .sgpb-options{width:100%;display:flex;position:relative;flex-direction:column}.sgpb .sgpb-options-menu{width:23%;padding:20px;background:#f8f8f8;margin-bottom:10px;position:relative;cursor:pointer}.sgpb .sgpb-options-menu:before{content:'';position:absolute;top:0;bottom:0;left:0;width:3px;background:0 0}.sgpb .sgpb-options-menu-header__sub{display:none;color:#757575}.sgpb .sgpb-options-menu-active{background:#fff;box-shadow:0 0 10px rgba(1,185,255,.3)}.sgpb .sgpb-options-menu-active:before{background:#01b9ff}.sgpb .sgpb-options-menu-active .sgpb-options-menu-header{color:#01b9ff;margin-bottom:10px}.sgpb .sgpb-options-menu-active .sgpb-options-menu-header__sub{display:block}.sgpb .sgpb-options-menu-active+.sgpb-options-content{display:block}.sgpb .sgpb-options-content{display:none;position:absolute;top:0;right:0;width:77%;padding:0 40px}.sgpb .sgpb-options-content .sgpb-header-h1{line-height:1.2}.sgpb .sgpb-options-content .sgpb-wrapper .text{display:flex;align-items:center;color:#000;margin-top:-30px;margin-bottom:10px}.sgpb .sgpb-options-content .sgpb-wrapper .text .inputBlock__title{font-weight:600;font-size:17px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-icons{margin-right:10px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-btn{width:80%;text-align:center;font-size:20px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions *{font-family:"Segoe UI Regular"}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-box{max-width:349px;display:flex;align-items:center;flex-direction:column;padding:13px 10px;border:1px solid rgba(112,112,112,.12);background:rgba(232,232,232,.11);border-radius:10px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-main-wrapper{align-items:flex-start}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-title{font-size:30px;font-weight:600;color:#000}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-text{font-size:15px;color:#757575;padding:0 25px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-pro-url{font-family:"Segoe UI Regular";color:#2873eb;font-size:15px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-inline-border{width:80%;height:2px;background:rgba(112,112,112,.12)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list{width:80%;text-align:center}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list .sgpb-pro-conditions-inline-border{width:100%}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list .sgpb-pro-conditions-inline-border:last-child{display:none}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-pro-conditions-list *{color:#757575;font-size:15px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label{position:relative}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-img{display:block;width:105px;height:70px;background-size:100px;background-repeat:no-repeat;background-position:center}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-1+.sgpb-popup-theme-img{background-image:url(../img/theme1.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-2+.sgpb-popup-theme-img{background-image:url(../img/theme2.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-3+.sgpb-popup-theme-img{background-image:url(../img/theme3.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-4+.sgpb-popup-theme-img{background-image:url(../img/theme4.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-5+.sgpb-popup-theme-img{background-image:url(../img/theme5.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label .sgpb-popup-theme-6+.sgpb-popup-theme-img{background-image:url(../img/theme6.jpg)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label input[type=radio]{width:100%;height:100%;visibility:hidden;position:absolute}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem label input[type=radio]:checked+.sgpb-popup-theme-img{width:140px;height:110px;background-size:130px;box-shadow:0 0 10px rgba(1,185,255,.3)}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .sgpb-range-wrap input[type=range]{cursor:pointer;width:200px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .sgpb-range-wrap input[type=text]{width:52px;padding:0 0 0 10px!important}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground{background:#f1f1f1;border-radius:5px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .subFormItemIcons{display:inline-flex;flex-direction:column;justify-content:space-around}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item{background:#b5caec;width:60px;height:60px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;cursor:pointer}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item+img{width:200px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item.icons_pink{background:#ffcece}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-design .formItem .subFormItem .subFormBackground .icons__item:hover{cursor:pointer}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings input{max-width:100px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .subFormItem__x{width:60px;height:60px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .subFormItem__x div{width:100%;height:100%}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item img{width:45px;height:45px}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item.icons_blue{background:#b5caec}.sgpb .sgpb-options-content .sgpb-wrapper .sgpb-close-settings .sgpb-close-button-image-option-wrapper .icons__item.icons_pink{background:#ffcece}.sgpb .sgpb-options-content .sgpb-media-upload{width:100%;height:70%;min-height:50vh}.sgpb .sgpb-options-content .sgpb-media-upload .formItem_last{width:500px;height:500px;position:relative;margin:0;box-shadow:0 0 20px rgba(0,0,0,.3);display:flex;align-items:center;justify-content:center}.sgpb .sgpb-options-content .sgpb-media-upload .formItem_last .sgpb-icons{position:absolute;left:-7%;width:80px;height:80px;font-size:50px;margin:0}.sgpb .sgpb-options-content .sgpb-media-upload .sgpb-show-image-container{background-image:url(../images/NoImage.png);width:70%;height:70%;min-height:40vh;background-repeat:no-repeat;background-size:contain;background-position:center}.sgpb .sgpb-options-content .sgpb-squares{display:flex;flex-wrap:wrap;justify-content:space-around;margin-left:8.75vw;width:350px;height:350px}.sgpb .sgpb-options-content .sgpb-squares__square{background:#2873eb 0 0 no-repeat padding-box;opacity:.4;width:100px;height:100px}.sgpb .sgpb-options-content .sgpb-squares__square:hover{cursor:pointer}.sgpb .sgpb-options-content .sgpb-squares__square_leftRounded{border-radius:5px 0 0 5px}.sgpb .sgpb-options-content .sgpb-squares__square_rightRounded{border-radius:0 5px 5px 0}.sgpb .sgpb-options-content .sgpb-squares__square.active,.sgpb .sgpb-options-content .sgpb-squares__square:hover{background:#2873eb 0 0 no-repeat padding-box;box-shadow:0 3px 10px rgba(40,115,235,.8);opacity:1}.sgpb .sgpb-options-content .sgpb-customJsOrCss_text{font-size:15px}.sgpb .sgpb-options-content .sgpb-customJsOrCss .formItem__title{font-size:15px}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper *{font-family:"Segoe UI Regular"}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .subFormItem__title{font-size:20px;color:#000}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button{background:#d8e6fc;border-radius:3px;color:#2873eb;border-color:transparent;width:120px;height:47px;display:inline-flex;justify-content:center;align-items:center;font-size:16px;font-weight:700}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button.active,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button:focus,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button:hover,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button.active,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button:focus,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button:hover{color:#fff;background-color:#2873eb;box-shadow:none}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button-disabled,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button-disabled{background-color:#d8e6fc!important;opacity:.34!important;cursor:default!important;color:#2873eb!important}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .sgpb-input-button-bg-arrows,.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper input[type=button].sgpb-input-button-bg-arrows{background-image:url(../svg/arrow_cross.svg);background-color:rgba(216,230,252,.34)!important;background-repeat:no-repeat;background-position:center;opacity:1!important}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .wp-picker-container button{margin:0 10px 0 0}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .wp-picker-container .wp-picker-holder{position:absolute}.sgpb .sgpb-options-content .sgpb-floating-btn-wrapper .wp-picker-container .wp-picker-input-wrap .sgpb-color-picker{padding:0 5px!important;line-height:2.1!important}.sgpb .sgpb-options-content .icons__item:hover{cursor:pointer}.sgpb .sgpb-options-content .icons_blue{background:#b5caec!important;color:#2873eb!important}.sgpb .sgpb-options-content .icons_pink{background:#ffcece!important;color:#c12121!important}.sgpb .sgpb-options-content .icons_gray{background:#c7c7c7!important;color:#333!important}.sgpb .sgpb-subscription-popup-options .dimensionForm{width:100%}.sgpb .sgpb-subscription-popup-options .dimensionForm .sgpb-choice-wrapper{margin-bottom:20px}.sgpb .sgpb-subscription .search-box{display:none}.sgpb .sgpb-subscription .table>thead>tr>th{vertical-align:middle}.sgpb .sgpb-license:nth-child(odd){margin-right:30px}.sgpb .sgpb-license-block{box-shadow:0 0 30px rgba(0,0,0,.2);border-radius:5px;width:48%}.sgpb .sgpb-license-border{top:0;position:absolute;height:2px;left:5%;width:90%}.sgpb .sgpb-license-border.active{background:#00ae5d}.sgpb .sgpb-license-border.inactive{background:#c00}.sgpb .sgpb-license__status{display:flex;align-items:center}.sgpb .sgpb-license__status .active{width:27px;height:27px;border:5px solid #00ae5d;border-radius:50%;margin-right:5px}.sgpb .sgpb-license__status .inactive{width:27px;height:27px;border:5px solid #c00;border-radius:50%;margin-right:5px}.sgpb .sgpb-cursor-pointer{cursor:pointer}.sgpb .sgpb-display-flex{display:flex!important}.sgpb .sgpb-display-block{display:block!important}.sgpb .sgpb-display-grid{display:grid!important}.sgpb .sgpb-display-inline-flex{display:inline-flex!important}.sgpb .sgpb-display-inline-block{display:inline-block!important}.sgpb .sgpb-display-inline-grid{display:inline-grid!important}.sgpb .sgpb-display-none{display:none!important}.sgpb .sgpb-justify-content-between{justify-content:space-between!important}.sgpb .sgpb-justify-content-around{justify-content:space-around!important}.sgpb .sgpb-justify-content-center{justify-content:center!important}.sgpb .sgpb-justify-content-flex-end{justify-content:flex-end}.sgpb .sgpb-flex-direction-column{flex-direction:column!important}.sgpb .sgpb-flex-direction-column-reverse{flex-direction:column-reverse!important}.sgpb .sgpb-flex-direction-row{flex-direction:row!important}.sgpb .sgpb-flex-direction-row-reverse{flex-direction:row-reverse!important}.sgpb .sgpb-flex-container{display:flex!important;align-items:stretch!important}.sgpb .sgpb-flex-100{flex:0 0 100px}.sgpb .sgpb-flex-200{flex:0 0 200px}.sgpb .sgpb-flex-220{flex:0 0 220px}.sgpb .sgpb-flex-250{flex:0 0 250px}.sgpb .sgpb-flex-auto{flex:auto}.sgpb .sgpb-align-item-center{align-items:center!important}.sgpb .sgpb-align-item-start{align-items:start!important}.sgpb .sgpb-align-item-baseline{align-items:baseline!important}.sgpb .sgpb-align-item-stretch{align-items:stretch!important}.sgpb .sgpb-position-relative{position:relative!important}.sgpb .sgpb-position-absolute{position:absolute!important}.sgpb .sgpb-position-fixed{position:fixed!important}.sgpb .sgpb-position-sticky{position:-webkit-sticky!important;position:sticky!important;top:10px!important}.sgpb .sgpb-margin-0{margin:0!important}.sgpb .sgpb-margin-5{margin:5px!important}.sgpb .sgpb-margin-10{margin:10px!important}.sgpb .sgpb-margin-20{margin:20px!important}.sgpb .sgpb-margin-30{margin:30px!important}.sgpb .sgpb-margin-40{margin:40px!important}.sgpb .sgpb-margin-50{margin:50px!important}.sgpb .sgpb-margin-auto{margin:0 auto!important}.sgpb .sgpb-margin-top-0{margin-top:0!important}.sgpb .sgpb-margin-top-5{margin-top:5px!important}.sgpb .sgpb-margin-top-10{margin-top:10px!important}.sgpb .sgpb-margin-top-20{margin-top:20px!important}.sgpb .sgpb-margin-top-30{margin-top:30px!important}.sgpb .sgpb-margin-top-40{margin-top:40px!important}.sgpb .sgpb-margin-top-50{margin-top:50px!important}.sgpb .sgpb-margin-bottom-0{margin-bottom:0!important}.sgpb .sgpb-margin-bottom-5{margin-bottom:5px!important}.sgpb .sgpb-margin-bottom-10{margin-bottom:10px!important}.sgpb .sgpb-margin-bottom-20{margin-bottom:20px!important}.sgpb .sgpb-margin-bottom-30{margin-bottom:30px!important}.sgpb .sgpb-margin-bottom-40{margin-bottom:40px!important}.sgpb .sgpb-margin-bottom-50{margin-bottom:50px!important}.sgpb .sgpb-margin-left-0{margin-left:0!important}.sgpb .sgpb-margin-left-5{margin-left:5px!important}.sgpb .sgpb-margin-left-10{margin-left:10px!important}.sgpb .sgpb-margin-left-20{margin-left:20px!important}.sgpb .sgpb-margin-left-30{margin-left:30px!important}.sgpb .sgpb-margin-left-40{margin-left:40px!important}.sgpb .sgpb-margin-left-50{margin-left:50px!important}.sgpb .sgpb-margin-right-0{margin-right:0!important}.sgpb .sgpb-margin-right-5{margin-right:5px!important}.sgpb .sgpb-margin-right-10{margin-right:10px!important}.sgpb .sgpb-margin-right-20{margin-right:20px!important}.sgpb .sgpb-margin-right-30{margin-right:30px!important}.sgpb .sgpb-margin-right-40{margin-right:40px!important}.sgpb .sgpb-margin-right-50{margin-right:50px!important}.sgpb .sgpb-margin-x-0{margin-left:0!important;margin-right:0!important}.sgpb .sgpb-margin-x-5{margin-left:5px!important;margin-right:5px!important}.sgpb .sgpb-margin-x-7{margin-left:7px!important;margin-right:7px!important}.sgpb .sgpb-margin-x-10{margin-left:10px!important;margin-right:10px!important}.sgpb .sgpb-margin-x-20{margin-left:20px!important;margin-right:20px!important}.sgpb .sgpb-margin-x-30{margin-left:30px!important;margin-right:30px!important}.sgpb .sgpb-margin-x-40{margin-left:40px!important;margin-right:40px!important}.sgpb .sgpb-margin-x-50{margin-left:50px!important;margin-right:50px!important}.sgpb .sgpb-margin-y-0{margin-top:0!important;margin-bottom:0!important}.sgpb .sgpb-margin-y-5{margin-top:5px!important;margin-bottom:5px!important}.sgpb .sgpb-margin-y-5-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-10{margin-top:10px!important;margin-bottom:10px!important}.sgpb .sgpb-margin-y-10-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-20{margin-top:20px!important;margin-bottom:20px!important}.sgpb .sgpb-margin-y-20-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-30{margin-top:30px!important;margin-bottom:30px!important}.sgpb .sgpb-margin-y-30-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-40{margin-top:40px!important;margin-bottom:40px!important}.sgpb .sgpb-margin-y-40-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-margin-y-50{margin-top:50px!important;margin-bottom:50px!important}.sgpb .sgpb-margin-y-50-auto{margin-left:auto!important;margin-right:auto!important}.sgpb .sgpb-padding-0{padding:0!important}.sgpb .sgpb-padding-5{padding:5px!important}.sgpb .sgpb-padding-10{padding:10px!important}.sgpb .sgpb-padding-20{padding:20px!important}.sgpb .sgpb-padding-30{padding:30px!important}.sgpb .sgpb-padding-40{padding:40px!important}.sgpb .sgpb-padding-50{padding:50px!important}.sgpb .sgpb-padding-top-0{padding-top:0!important}.sgpb .sgpb-padding-top-5{padding-top:5px!important}.sgpb .sgpb-padding-top-10{padding-top:10px!important}.sgpb .sgpb-padding-top-20{padding-top:20px!important}.sgpb .sgpb-padding-top-30{padding-top:30px!important}.sgpb .sgpb-padding-top-40{padding-top:40px!important}.sgpb .sgpb-padding-top-50{padding-top:50px!important}.sgpb .sgpb-padding-bottom-0{padding-bottom:0!important}.sgpb .sgpb-padding-bottom-5{padding-bottom:5px!important}.sgpb .sgpb-padding-bottom-10{padding-bottom:10px!important}.sgpb .sgpb-padding-bottom-20{padding-bottom:20px!important}.sgpb .sgpb-padding-bottom-30{padding-bottom:30px!important}.sgpb .sgpb-padding-bottom-40{padding-bottom:40px!important}.sgpb .sgpb-padding-bottom-50{padding-bottom:50px!important}.sgpb .sgpb-padding-left-0{padding-left:0!important}.sgpb .sgpb-padding-left-5{padding-left:5px!important}.sgpb .sgpb-padding-left-10{padding-left:10px!important}.sgpb .sgpb-padding-left-20{padding-left:20px!important}.sgpb .sgpb-padding-left-30{padding-left:30px!important}.sgpb .sgpb-padding-left-40{padding-left:40px!important}.sgpb .sgpb-padding-left-50{padding-left:50px!important}.sgpb .sgpb-padding-right-0{padding-right:0!important}.sgpb .sgpb-padding-right-5{padding-right:5px!important}.sgpb .sgpb-padding-right-10{padding-right:10px!important}.sgpb .sgpb-padding-right-20{padding-right:20px!important}.sgpb .sgpb-padding-right-30{padding-right:30px!important}.sgpb .sgpb-padding-right-40{padding-right:40px!important}.sgpb .sgpb-padding-right-50{padding-right:50px!important}.sgpb .sgpb-padding-x-0{padding-left:0!important;padding-right:0!important}.sgpb .sgpb-padding-x-5{padding-left:5px!important;padding-right:5px!important}.sgpb .sgpb-padding-x-10{padding-left:10px!important;padding-right:10px!important}.sgpb .sgpb-padding-x-20{padding-left:20px!important;padding-right:20px!important}.sgpb .sgpb-padding-x-30{padding-left:30px!important;padding-right:30px!important}.sgpb .sgpb-padding-x-40{padding-left:40px!important;padding-right:40px!important}.sgpb .sgpb-padding-x-50{padding-left:50px!important;padding-right:50px!important}.sgpb .sgpb-padding-y-0{padding-top:0!important;padding-bottom:0!important}.sgpb .sgpb-padding-y-5{padding-top:5px!important;padding-bottom:5px!important}.sgpb .sgpb-padding-y-10{padding-top:10px!important;padding-bottom:10px!important}.sgpb .sgpb-padding-y-20{padding-top:20px!important;padding-bottom:20px!important}.sgpb .sgpb-padding-y-30{padding-top:30px!important;padding-bottom:30px!important}.sgpb .sgpb-padding-y-40{padding-top:40px!important;padding-bottom:40px!important}.sgpb .sgpb-padding-y-50{padding-top:50px!important;padding-bottom:50px!important}.sgpb .sgpb-text-center{text-align:center}.sgpb .sgpb-text-nowrap{white-space:nowrap}.sgpb .sgpb-text-capitalize{text-transform:capitalize}.sgpb .sgpb-input[type=text],.sgpb .sgpb-input[type=url]{padding:10px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:1.2!important}.sgpb .sgpb-input[type=text]:active,.sgpb .sgpb-input[type=text]:focus,.sgpb .sgpb-input[type=url]:active,.sgpb .sgpb-input[type=url]:focus{border-color:transparent!important}.sgpb .sgpb input[type=radio],.sgpb .sgpb-radio-input{width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb .sgpb input[type=radio]:checked:before,.sgpb .sgpb-radio-input:checked:before{content:"";border-radius:50%;width:.5rem;height:.5rem;margin:0!important;background-color:#2873eb}.sgpb .sgpb input[type=radio]:active,.sgpb .sgpb input[type=radio]:focus,.sgpb .sgpb-radio-input:active,.sgpb .sgpb-radio-input:focus{outline:0!important}.sgpb .sgpb textarea:not(.js-contact-field-textarea){background:#ececec;border-radius:5px;width:100%;min-height:200px;border-color:transparent;padding:5px}.sgpb .sgpb textarea:not(.js-contact-field-textarea):active,.sgpb .sgpb textarea:not(.js-contact-field-textarea):focus{border-color:transparent;box-shadow:none;outline:0}.sgpb .sgpb-icons{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:22px;font-style:normal;border-radius:50%;display:flex;justify-content:center;align-items:center;width:40px;height:40px}.sgpb .sgpb-icons:hover{cursor:pointer}.sgpb .sgpb-width-100{width:100%}.sgpb .sgpb-width-90{width:90%}.sgpb .sgpb-width-80{width:80%}.sgpb .sgpb-width-70{width:70%}.sgpb .sgpb-width-60{width:60%}.sgpb .sgpb-width-50{width:50%}.sgpb .sgpb-width-40{width:40%}.sgpb .sgpb-width-35{width:35%}.sgpb .sgpb-width-30{width:30%}.sgpb .sgpb-width-20{width:20%}.sgpb .sgpb-width-10{width:10%}.sgpb .sgpb .question-mark{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:10px;line-height:16px;letter-spacing:0;color:#000;text-shadow:0 0 6px #000;background:#c6c6c6 0 0 no-repeat padding-box;width:18px;height:18px;border-radius:50%;display:flex;justify-content:center;align-items:center;margin-left:9px;margin-right:9px;font-weight:bolder;cursor:pointer}.sgpb .sgpb-info-text{color:#000;font:13px/14px Segoe UI Bold;width:215px;position:absolute;min-width:20px;min-height:13px;display:none;margin-top:-18px;margin-left:0;box-shadow:4px 0 6px rgba(0,0,0,.2);padding:5px;z-index:9999;background:#bcbcbc 0 0 no-repeat padding-box;border-radius:5px}.sgpb .sgpb-bg-black{background:#000}.sgpb .sgpb-bg-black__opacity-02{background:rgba(0,0,0,.02)}.sgpb .sgpb-bg-white{background-color:#fff}.sgpb .sgpb-border{border:1px solid}.sgpb .sgpb-border-top{border-top:1px solid}.sgpb .sgpb-border-bottom{border-bottom:1px solid}.sgpb .sgpb-border-left{border-left:1px solid}.sgpb .sgpb-border-right{border-right:1px solid}.sgpb .sgpb-border-color-black{border-color:#000}.sgpb .sgpb-border-radius-5px{border-radius:5px}.sgpb .sgpb-border-radius-50{border-radius:50%}.sgpb .sgpb-border-radius-50:active,.sgpb .sgpb-border-radius-50:focus{border-radius:50%}.sgpb .sgpb-unlock-options{display:flex;align-items:center;justify-content:space-between;background:#2873eb;border-radius:20px;opacity:1!important;cursor:pointer}.sgpb .sgpb-unlock-options *{opacity:1!important}.sgpb .sgpb-unlock-options__icon{box-shadow:0 0 6px rgba(40,115,235,.8);background:#fff;border-radius:20px;display:inline-flex;align-items:center;justify-content:center;width:60px;height:60px}.sgpb .sgpb-unlock-options__icon img{width:55px;height:55px}.sgpb .sgpb-unlock-options__title{margin-left:10px!important;padding:0 10px 0 0!important;font-weight:700!important;color:#fff!important}.sgpb .sgpb-tabs{display:flex;align-items:center;justify-content:start;border-bottom:2px solid rgba(0,0,0,.2)}.sgpb .sgpb-tabs .sgpb-tab-link{color:#000;font-size:20px;padding:15px 40px;font-weight:600;margin-bottom:-2px;cursor:pointer}.sgpb .sgpb-tabs .sgpb-tab-active{color:#2873eb;border-bottom:2px solid #2873eb}.sgpb .sgpb-onOffSwitch{position:relative;width:60px}.sgpb .sgpb-onOffSwitch__label{display:block;background:#e6e6e6;overflow:hidden;cursor:pointer;border-radius:21px}.sgpb .sgpb-onOffSwitch-inner{display:block;width:200%;margin-left:-100%;transition:margin .3s ease-in 0s}.sgpb .sgpb-onOffSwitch-inner:after,.sgpb .sgpb-onOffSwitch-inner:before{display:block;float:left;width:50%;height:30px;padding:0;line-height:42px;font-size:16px;color:#000;font:bold 16px/27px Segoe UI Regular;box-sizing:border-box}.sgpb .sgpb-onOffSwitch-inner:before{content:"on";padding-top:0;padding-left:9px;background-color:#e6e6e6}.sgpb .sgpb-onOffSwitch-inner:after{content:"off";padding-right:10px;padding-top:0;background-color:#e6e6e6;text-align:right}.sgpb .sgpb-onOffSwitch-switch{display:block;width:26px;height:26px;background:#757575;position:absolute;top:2px;right:32px;border-radius:50%;transition:all .3s ease-in 0s}.sgpb .sgpb-onOffSwitch input[type=checkbox]{visibility:hidden;position:absolute;width:100%!important;height:100%!important;margin:0!important}.sgpb .sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-inner{margin-left:0}.sgpb .sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-switch{right:2px;background-color:#2873eb}.sgpb .sgpb .formItem{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;margin-top:20px;margin-bottom:20px}.sgpb .sgpb .formItem *{color:#000}.sgpb .sgpb .formItem-label{font-size:17px;font-weight:700;margin-right:20px}.sgpb .sgpb .formItem .sgpb-option-disable,.sgpb .sgpb .formItem.sgpb-option-disable{background:#b2c8ec2b}.sgpb .sgpb .formItem .sgpb-option-disable *,.sgpb .sgpb .formItem.sgpb-option-disable *{opacity:.7}.sgpb .sgpb .formItem .sgpb-option-disable label,.sgpb .sgpb .formItem.sgpb-option-disable label{cursor:no-drop}.sgpb .sgpb .formItem .sgpb-option-disable .sgpb-info-text,.sgpb .sgpb .formItem .sgpb-option-disable .sgpb-info-wrapper,.sgpb .sgpb .formItem.sgpb-option-disable .sgpb-info-text,.sgpb .sgpb .formItem.sgpb-option-disable .sgpb-info-wrapper{opacity:1}.sgpb .sgpb .formItem__title{font-size:17px;font-weight:700;margin-right:20px;color:#000}.sgpb .sgpb .formItem .subFormItem .wp-picker-container button{margin:0 6px}.sgpb .sgpb .formItem .subFormItem .wp-picker-container .wp-picker-holder{position:absolute}.sgpb .sgpb .formItem .subFormItem .wp-picker-container .wp-picker-input-wrap .sgpb-color-picker{padding:0 5px!important;line-height:2.1!important}.sgpb .sgpb .formItem .subFormItem__title{font-size:15px;color:#000}.sgpb .sgpb .formItem .inputBlock{margin-right:30px}.sgpb .sgpb .formItem .inputBlock input:not(input[type=search]){padding:5px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important;height:auto!important}.sgpb .sgpb .formItem .inputBlock input:not(input[type=search]):active,.sgpb .sgpb .formItem .inputBlock input:not(input[type=search]):focus{border-color:transparent!important}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px 15px!important;border-radius:5px!important;background-color:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus{border-color:transparent!important}.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs){width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):checked:before{content:"E";font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:15px;color:#2873eb;position:relative;top:4px;font-weight:600;left:2px}.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):active,.sgpb .sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):focus{outline:0!important}.sgpb .sgpb-shadow-black{box-shadow:0 0 30px rgba(0,0,0,.5)}.sgpb .sgpb-shadow-black-10{box-shadow:0 0 10px rgba(0,0,0,.5)}.sgpb .sgpb-overflow-auto{overflow:auto}.sgpb .sgpb-overflow-hidden{overflow:hidden}.sgpb .sgpb-nowrap{white-space:nowrap}.sgpb .sgpb-list-group{display:flex;flex-direction:column}.sgpb .sgpb-list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#000;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.sgpb .sgpb-list-group-item.active,.sgpb .sgpb-list-group-item:hover{background-color:rgba(0,127,225,.36)}.sgpb .sgpb-list-group-flush>.sgpb-list-group-item{border-width:0 0 1px}.sgpb .sgpb-list-group-flush>.sgpb-list-group-item:last-child{border-bottom-width:0}@media screen and (max-width:1250px) and (min-width:1100px){.sgpb .sgpb .sgpb-options-menu{padding:12px}.sgpb .sgpb .sgpb-options-menu h3{font-size:14px}.sgpb .sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:0 3px!important;line-height:1.7!important;margin:0 2px!important}.sgpb .edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1350px) and (min-width:1250px){.sgpb .sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.sgpb .edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1500px) and (min-width:1310px){.sgpb .sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.sgpb .edit-post-meta-boxes-area .postbox>.inside{padding:0}}.sgpb-cursor-pointer{cursor:pointer}.sgpb-display-flex{display:flex!important}.sgpb-display-block{display:block!important}.sgpb-display-grid{display:grid!important}.sgpb-display-inline-flex{display:inline-flex!important}.sgpb-display-inline-block{display:inline-block!important}.sgpb-display-inline-grid{display:inline-grid!important}.sgpb-display-none{display:none!important}.sgpb-justify-content-between{justify-content:space-between!important}.sgpb-justify-content-around{justify-content:space-around!important}.sgpb-justify-content-center{justify-content:center!important}.sgpb-justify-content-flex-end{justify-content:flex-end}.sgpb-flex-direction-column{flex-direction:column!important}.sgpb-flex-direction-column-reverse{flex-direction:column-reverse!important}.sgpb-flex-direction-row{flex-direction:row!important}.sgpb-flex-direction-row-reverse{flex-direction:row-reverse!important}.sgpb-flex-container{display:flex!important;align-items:stretch!important}.sgpb-flex-100{flex:0 0 100px}.sgpb-flex-200{flex:0 0 200px}.sgpb-flex-220{flex:0 0 220px}.sgpb-flex-250{flex:0 0 250px}.sgpb-flex-auto{flex:auto}.sgpb-align-item-center{align-items:center!important}.sgpb-align-item-start{align-items:start!important}.sgpb-align-item-baseline{align-items:baseline!important}.sgpb-align-item-stretch{align-items:stretch!important}.sgpb-position-relative{position:relative!important}.sgpb-position-absolute{position:absolute!important}.sgpb-position-fixed{position:fixed!important}.sgpb-position-sticky{position:-webkit-sticky!important;position:sticky!important;top:10px!important}.sgpb-margin-0{margin:0!important}.sgpb-margin-5{margin:5px!important}.sgpb-margin-10{margin:10px!important}.sgpb-margin-20{margin:20px!important}.sgpb-margin-30{margin:30px!important}.sgpb-margin-40{margin:40px!important}.sgpb-margin-50{margin:50px!important}.sgpb-margin-auto{margin:0 auto!important}.sgpb-margin-top-0{margin-top:0!important}.sgpb-margin-top-5{margin-top:5px!important}.sgpb-margin-top-10{margin-top:10px!important}.sgpb-margin-top-20{margin-top:20px!important}.sgpb-margin-top-30{margin-top:30px!important}.sgpb-margin-top-40{margin-top:40px!important}.sgpb-margin-top-50{margin-top:50px!important}.sgpb-margin-bottom-0{margin-bottom:0!important}.sgpb-margin-bottom-5{margin-bottom:5px!important}.sgpb-margin-bottom-10{margin-bottom:10px!important}.sgpb-margin-bottom-20{margin-bottom:20px!important}.sgpb-margin-bottom-30{margin-bottom:30px!important}.sgpb-margin-bottom-40{margin-bottom:40px!important}.sgpb-margin-bottom-50{margin-bottom:50px!important}.sgpb-margin-left-0{margin-left:0!important}.sgpb-margin-left-5{margin-left:5px!important}.sgpb-margin-left-10{margin-left:10px!important}.sgpb-margin-left-20{margin-left:20px!important}.sgpb-margin-left-30{margin-left:30px!important}.sgpb-margin-left-40{margin-left:40px!important}.sgpb-margin-left-50{margin-left:50px!important}.sgpb-margin-right-0{margin-right:0!important}.sgpb-margin-right-5{margin-right:5px!important}.sgpb-margin-right-10{margin-right:10px!important}.sgpb-margin-right-20{margin-right:20px!important}.sgpb-margin-right-30{margin-right:30px!important}.sgpb-margin-right-40{margin-right:40px!important}.sgpb-margin-right-50{margin-right:50px!important}.sgpb-margin-x-0{margin-left:0!important;margin-right:0!important}.sgpb-margin-x-5{margin-left:5px!important;margin-right:5px!important}.sgpb-margin-x-7{margin-left:7px!important;margin-right:7px!important}.sgpb-margin-x-10{margin-left:10px!important;margin-right:10px!important}.sgpb-margin-x-20{margin-left:20px!important;margin-right:20px!important}.sgpb-margin-x-30{margin-left:30px!important;margin-right:30px!important}.sgpb-margin-x-40{margin-left:40px!important;margin-right:40px!important}.sgpb-margin-x-50{margin-left:50px!important;margin-right:50px!important}.sgpb-margin-y-0{margin-top:0!important;margin-bottom:0!important}.sgpb-margin-y-5{margin-top:5px!important;margin-bottom:5px!important}.sgpb-margin-y-5-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-10{margin-top:10px!important;margin-bottom:10px!important}.sgpb-margin-y-10-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-20{margin-top:20px!important;margin-bottom:20px!important}.sgpb-margin-y-20-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-30{margin-top:30px!important;margin-bottom:30px!important}.sgpb-margin-y-30-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-40{margin-top:40px!important;margin-bottom:40px!important}.sgpb-margin-y-40-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-margin-y-50{margin-top:50px!important;margin-bottom:50px!important}.sgpb-margin-y-50-auto{margin-left:auto!important;margin-right:auto!important}.sgpb-padding-0{padding:0!important}.sgpb-padding-5{padding:5px!important}.sgpb-padding-10{padding:10px!important}.sgpb-padding-20{padding:20px!important}.sgpb-padding-30{padding:30px!important}.sgpb-padding-40{padding:40px!important}.sgpb-padding-50{padding:50px!important}.sgpb-padding-top-0{padding-top:0!important}.sgpb-padding-top-5{padding-top:5px!important}.sgpb-padding-top-10{padding-top:10px!important}.sgpb-padding-top-20{padding-top:20px!important}.sgpb-padding-top-30{padding-top:30px!important}.sgpb-padding-top-40{padding-top:40px!important}.sgpb-padding-top-50{padding-top:50px!important}.sgpb-padding-bottom-0{padding-bottom:0!important}.sgpb-padding-bottom-5{padding-bottom:5px!important}.sgpb-padding-bottom-10{padding-bottom:10px!important}.sgpb-padding-bottom-20{padding-bottom:20px!important}.sgpb-padding-bottom-30{padding-bottom:30px!important}.sgpb-padding-bottom-40{padding-bottom:40px!important}.sgpb-padding-bottom-50{padding-bottom:50px!important}.sgpb-padding-left-0{padding-left:0!important}.sgpb-padding-left-5{padding-left:5px!important}.sgpb-padding-left-10{padding-left:10px!important}.sgpb-padding-left-20{padding-left:20px!important}.sgpb-padding-left-30{padding-left:30px!important}.sgpb-padding-left-40{padding-left:40px!important}.sgpb-padding-left-50{padding-left:50px!important}.sgpb-padding-right-0{padding-right:0!important}.sgpb-padding-right-5{padding-right:5px!important}.sgpb-padding-right-10{padding-right:10px!important}.sgpb-padding-right-20{padding-right:20px!important}.sgpb-padding-right-30{padding-right:30px!important}.sgpb-padding-right-40{padding-right:40px!important}.sgpb-padding-right-50{padding-right:50px!important}.sgpb-padding-x-0{padding-left:0!important;padding-right:0!important}.sgpb-padding-x-5{padding-left:5px!important;padding-right:5px!important}.sgpb-padding-x-10{padding-left:10px!important;padding-right:10px!important}.sgpb-padding-x-20{padding-left:20px!important;padding-right:20px!important}.sgpb-padding-x-30{padding-left:30px!important;padding-right:30px!important}.sgpb-padding-x-40{padding-left:40px!important;padding-right:40px!important}.sgpb-padding-x-50{padding-left:50px!important;padding-right:50px!important}.sgpb-padding-y-0{padding-top:0!important;padding-bottom:0!important}.sgpb-padding-y-5{padding-top:5px!important;padding-bottom:5px!important}.sgpb-padding-y-10{padding-top:10px!important;padding-bottom:10px!important}.sgpb-padding-y-20{padding-top:20px!important;padding-bottom:20px!important}.sgpb-padding-y-30{padding-top:30px!important;padding-bottom:30px!important}.sgpb-padding-y-40{padding-top:40px!important;padding-bottom:40px!important}.sgpb-padding-y-50{padding-top:50px!important;padding-bottom:50px!important}.sgpb-text-center{text-align:center}.sgpb-text-nowrap{white-space:nowrap}.sgpb-text-capitalize{text-transform:capitalize}.sgpb-input[type=text],.sgpb-input[type=url]{padding:10px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:1.2!important}.sgpb-input[type=text]:active,.sgpb-input[type=text]:focus,.sgpb-input[type=url]:active,.sgpb-input[type=url]:focus{border-color:transparent!important}.sgpb input[type=radio],.sgpb-radio-input{width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb input[type=radio]:checked:before,.sgpb-radio-input:checked:before{content:"";border-radius:50%;width:.5rem;height:.5rem;margin:0!important;background-color:#2873eb}.sgpb input[type=radio]:active,.sgpb input[type=radio]:focus,.sgpb-radio-input:active,.sgpb-radio-input:focus{outline:0!important}.sgpb textarea:not(.js-contact-field-textarea){background:#ececec;border-radius:5px;width:100%;min-height:200px;border-color:transparent;padding:5px}.sgpb textarea:not(.js-contact-field-textarea):active,.sgpb textarea:not(.js-contact-field-textarea):focus{border-color:transparent;box-shadow:none;outline:0}.sgpb-icons{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:22px;font-style:normal;border-radius:50%;display:flex;justify-content:center;align-items:center;width:40px;height:40px}.sgpb-icons:hover{cursor:pointer}.sgpb-width-100{width:100%}.sgpb-width-90{width:90%}.sgpb-width-80{width:80%}.sgpb-width-70{width:70%}.sgpb-width-60{width:60%}.sgpb-width-50{width:50%}.sgpb-width-40{width:40%}.sgpb-width-35{width:35%}.sgpb-width-30{width:30%}.sgpb-width-20{width:20%}.sgpb-width-10{width:10%}.sgpb .question-mark{font-family:Glyphter,Arial,Helvetica,sans-serif!important;font-size:10px;line-height:16px;letter-spacing:0;color:#000;text-shadow:0 0 6px #000;background:#c6c6c6 0 0 no-repeat padding-box;width:18px;height:18px;border-radius:50%;display:flex;justify-content:center;align-items:center;margin-left:9px;margin-right:9px;font-weight:bolder;cursor:pointer}.sgpb-info-text{color:#000;font:13px/14px Segoe UI Bold;width:215px;position:absolute;min-width:20px;min-height:13px;display:none;margin-top:-18px;margin-left:0;box-shadow:4px 0 6px rgba(0,0,0,.2);padding:5px;z-index:9999;background:#bcbcbc 0 0 no-repeat padding-box;border-radius:5px}.sgpb-bg-black{background:#000}.sgpb-bg-black__opacity-02{background:rgba(0,0,0,.02)}.sgpb-bg-white{background-color:#fff}.sgpb-border{border:1px solid}.sgpb-border-top{border-top:1px solid}.sgpb-border-bottom{border-bottom:1px solid}.sgpb-border-left{border-left:1px solid}.sgpb-border-right{border-right:1px solid}.sgpb-border-color-black{border-color:#000}.sgpb-border-radius-5px{border-radius:5px}.sgpb-border-radius-50{border-radius:50%}.sgpb-border-radius-50:active,.sgpb-border-radius-50:focus{border-radius:50%}.sgpb-unlock-options{display:flex;align-items:center;justify-content:space-between;background:#2873eb;border-radius:20px;opacity:1!important;cursor:pointer}.sgpb-unlock-options *{opacity:1!important}.sgpb-unlock-options__icon{box-shadow:0 0 6px rgba(40,115,235,.8);background:#fff;border-radius:20px;display:inline-flex;align-items:center;justify-content:center;width:60px;height:60px}.sgpb-unlock-options__icon img{width:55px;height:55px}.sgpb-unlock-options__title{margin-left:10px!important;padding:0 10px 0 0!important;font-weight:700!important;color:#fff!important}.sgpb-tabs{display:flex;align-items:center;justify-content:start;border-bottom:2px solid rgba(0,0,0,.2)}.sgpb-tabs .sgpb-tab-link{color:#000;font-size:20px;padding:15px 40px;font-weight:600;margin-bottom:-2px;cursor:pointer}.sgpb-tabs .sgpb-tab-active{color:#2873eb;border-bottom:2px solid #2873eb}.sgpb-onOffSwitch{position:relative;width:60px}.sgpb-onOffSwitch__label{display:block;background:#e6e6e6;overflow:hidden;cursor:pointer;border-radius:21px}.sgpb-onOffSwitch-inner{display:block;width:200%;margin-left:-100%;transition:margin .3s ease-in 0s}.sgpb-onOffSwitch-inner:after,.sgpb-onOffSwitch-inner:before{display:block;float:left;width:50%;height:30px;padding:0;line-height:42px;font-size:16px;color:#000;font:bold 16px/27px Segoe UI Regular;box-sizing:border-box}.sgpb-onOffSwitch-inner:before{content:"on";padding-top:0;padding-left:9px;background-color:#e6e6e6}.sgpb-onOffSwitch-inner:after{content:"off";padding-right:10px;padding-top:0;background-color:#e6e6e6;text-align:right}.sgpb-onOffSwitch-switch{display:block;width:26px;height:26px;background:#757575;position:absolute;top:2px;right:32px;border-radius:50%;transition:all .3s ease-in 0s}.sgpb-onOffSwitch input[type=checkbox]{visibility:hidden;position:absolute;width:100%!important;height:100%!important;margin:0!important}.sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-inner{margin-left:0}.sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-switch{right:2px;background-color:#2873eb}.sgpb .formItem{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;margin-top:20px;margin-bottom:20px}.sgpb .formItem *{color:#000}.sgpb .formItem-label{font-size:17px;font-weight:700;margin-right:20px}.sgpb .formItem .sgpb-option-disable,.sgpb .formItem.sgpb-option-disable{background:#b2c8ec2b}.sgpb .formItem .sgpb-option-disable *,.sgpb .formItem.sgpb-option-disable *{opacity:.7}.sgpb .formItem .sgpb-option-disable label,.sgpb .formItem.sgpb-option-disable label{cursor:no-drop}.sgpb .formItem .sgpb-option-disable .sgpb-info-text,.sgpb .formItem .sgpb-option-disable .sgpb-info-wrapper,.sgpb .formItem.sgpb-option-disable .sgpb-info-text,.sgpb .formItem.sgpb-option-disable .sgpb-info-wrapper{opacity:1}.sgpb .formItem__title{font-size:17px;font-weight:700;margin-right:20px;color:#000}.sgpb .formItem .subFormItem .wp-picker-container button{margin:0 6px}.sgpb .formItem .subFormItem .wp-picker-container .wp-picker-holder{position:absolute}.sgpb .formItem .subFormItem .wp-picker-container .wp-picker-input-wrap .sgpb-color-picker{padding:0 5px!important;line-height:2.1!important}.sgpb .formItem .subFormItem__title{font-size:15px;color:#000}.sgpb .formItem .inputBlock{margin-right:30px}.sgpb .formItem .inputBlock input:not(input[type=search]){padding:5px 15px!important;border-radius:5px!important;background:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important;height:auto!important}.sgpb .formItem .inputBlock input:not(input[type=search]):active,.sgpb .formItem .inputBlock input:not(input[type=search]):focus{border-color:transparent!important}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px 15px!important;border-radius:5px!important;background-color:#f1f1f1!important;border:2px solid transparent!important;line-height:2.7!important}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus,.sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):active,.sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker):focus{border-color:transparent!important}.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs){width:20px;height:20px;display:inline-flex;justify-content:center;align-items:center;border-color:transparent;background:#e6e6e6}.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):checked:before{content:"E";font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:15px;color:#2873eb;position:relative;top:4px;font-weight:600;left:2px}.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):active,.sgpb .formItem input[type=checkbox]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.js-login-remember-me-inputs):focus{outline:0!important}.sgpb-shadow-black{box-shadow:0 0 30px rgba(0,0,0,.5)}.sgpb-shadow-black-10{box-shadow:0 0 10px rgba(0,0,0,.5)}.sgpb-overflow-auto{overflow:auto}.sgpb-overflow-hidden{overflow:hidden}.sgpb-nowrap{white-space:nowrap}.sgpb-list-group{display:flex;flex-direction:column}.sgpb-list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#000;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.sgpb-list-group-item.active,.sgpb-list-group-item:hover{background-color:rgba(0,127,225,.36)}.sgpb-list-group-flush>.sgpb-list-group-item{border-width:0 0 1px}.sgpb-list-group-flush>.sgpb-list-group-item:last-child{border-bottom-width:0}.post-type-popupbuilder .subtitle,.post-type-sgpbautoresponder .subtitle,.post-type-sgpbtemplate .subtitle{display:none}.post-type-popupbuilder form :not(i),.post-type-sgpbautoresponder form :not(i),.post-type-sgpbtemplate form :not(i){font-family:Segoe UI Regular,Arial,Helvetica,sans-serif,FontAwesome}.post-type-popupbuilder form .tablenav.top,.post-type-sgpbautoresponder form .tablenav.top,.post-type-sgpbtemplate form .tablenav.top{height:40px}.post-type-popupbuilder form .tablenav.top .pagination-links,.post-type-sgpbautoresponder form .tablenav.top .pagination-links,.post-type-sgpbtemplate form .tablenav.top .pagination-links{display:none}.post-type-popupbuilder form .tablenav.top .actions,.post-type-sgpbautoresponder form .tablenav.top .actions,.post-type-sgpbtemplate form .tablenav.top .actions{display:flex}.post-type-popupbuilder form .tablenav.top .actions.bulkactions,.post-type-sgpbautoresponder form .tablenav.top .actions.bulkactions,.post-type-sgpbtemplate form .tablenav.top .actions.bulkactions{margin-right:8px}.post-type-popupbuilder form .tablenav.top .actions input,.post-type-popupbuilder form .tablenav.top .actions select,.post-type-sgpbautoresponder form .tablenav.top .actions input,.post-type-sgpbautoresponder form .tablenav.top .actions select,.post-type-sgpbtemplate form .tablenav.top .actions input,.post-type-sgpbtemplate form .tablenav.top .actions select{padding:10px 20px;border-radius:5px;background-color:#f1f1f1;border:2px solid transparent;line-height:1.2;margin:0}.post-type-popupbuilder form .tablenav.top .actions input:active,.post-type-popupbuilder form .tablenav.top .actions input:focus,.post-type-popupbuilder form .tablenav.top .actions select:active,.post-type-popupbuilder form .tablenav.top .actions select:focus,.post-type-sgpbautoresponder form .tablenav.top .actions input:active,.post-type-sgpbautoresponder form .tablenav.top .actions input:focus,.post-type-sgpbautoresponder form .tablenav.top .actions select:active,.post-type-sgpbautoresponder form .tablenav.top .actions select:focus,.post-type-sgpbtemplate form .tablenav.top .actions input:active,.post-type-sgpbtemplate form .tablenav.top .actions input:focus,.post-type-sgpbtemplate form .tablenav.top .actions select:active,.post-type-sgpbtemplate form .tablenav.top .actions select:focus{border-color:transparent;box-shadow:none}.post-type-popupbuilder form .tablenav.top .actions select,.post-type-sgpbautoresponder form .tablenav.top .actions select,.post-type-sgpbtemplate form .tablenav.top .actions select{padding-left:5px;min-width:120px}.post-type-popupbuilder form .tablenav.top .actions input,.post-type-sgpbautoresponder form .tablenav.top .actions input,.post-type-sgpbtemplate form .tablenav.top .actions input{font-family:"Segoe UI Regular";font-weight:500;margin-left:-2px;color:#fff;background:#2873eb;border-color:#2873eb;font-size:14px}.post-type-popupbuilder form .tablenav.top .actions input:hover,.post-type-sgpbautoresponder form .tablenav.top .actions input:hover,.post-type-sgpbtemplate form .tablenav.top .actions input:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#fff;color:#2873eb;border-color:#2873eb}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li{color:#fff}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li a,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li a,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li a{font-family:"Segoe UI Regular";color:#2873eb;font-weight:600;background:0 0;-webkit-border-radius:29px;-moz-border-radius:29px;border-radius:29px;padding:10px 30px;border:2px solid rgba(0,0,0,.14);line-height:1.2}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li a:focus,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li a:focus,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li a:focus{box-shadow:none;outline:0}.post-type-popupbuilder form .tablenav.top .tablenav-pages .subsubsub li a.current,.post-type-sgpbautoresponder form .tablenav.top .tablenav-pages .subsubsub li a.current,.post-type-sgpbtemplate form .tablenav.top .tablenav-pages .subsubsub li a.current{color:#000}.post-type-popupbuilder form table,.post-type-sgpbautoresponder form table,.post-type-sgpbtemplate form table{border:none;box-shadow:0 0 15px #0000001A;padding:10px;margin-top:50px;border-collapse:separate}.post-type-popupbuilder form table input[type=checkbox],.post-type-sgpbautoresponder form table input[type=checkbox],.post-type-sgpbtemplate form table input[type=checkbox]{width:20px;height:20px;position:relative;border:1px solid #707070;box-shadow:none;transition:.05s border-color ease-in-out;line-height:0}.post-type-popupbuilder form table input[type=checkbox]:before,.post-type-sgpbautoresponder form table input[type=checkbox]:before,.post-type-sgpbtemplate form table input[type=checkbox]:before{content:'-';position:absolute;top:36%;left:17%;color:#fff;font-size:31px}.post-type-popupbuilder form table input[type=checkbox]:checked,.post-type-sgpbautoresponder form table input[type=checkbox]:checked,.post-type-sgpbtemplate form table input[type=checkbox]:checked{background:#2873eb;border-color:transparent}.post-type-popupbuilder form table input[type=checkbox]:checked::before,.post-type-sgpbautoresponder form table input[type=checkbox]:checked::before,.post-type-sgpbtemplate form table input[type=checkbox]:checked::before{content:"E";font-family:Glyphter,Arial,Helvetica,sans-serif;font-size:13px;line-height:1.1;color:#fff}.post-type-popupbuilder form table .sgpb-switch .sg-switch-checkbox:checked+.sgpb-slider,.post-type-sgpbautoresponder form table .sgpb-switch .sg-switch-checkbox:checked+.sgpb-slider,.post-type-sgpbtemplate form table .sgpb-switch .sg-switch-checkbox:checked+.sgpb-slider{background-color:#2873eb}.post-type-popupbuilder form table thead input[type=checkbox],.post-type-sgpbautoresponder form table thead input[type=checkbox],.post-type-sgpbtemplate form table thead input[type=checkbox]{background:#2873eb}.post-type-popupbuilder form table thead tr *,.post-type-sgpbautoresponder form table thead tr *,.post-type-sgpbtemplate form table thead tr *{color:#000;font-family:"Segoe UI Regular";font-weight:600}.post-type-popupbuilder form table thead td,.post-type-popupbuilder form table thead th,.post-type-sgpbautoresponder form table thead td,.post-type-sgpbautoresponder form table thead th,.post-type-sgpbtemplate form table thead td,.post-type-sgpbtemplate form table thead th{border:none}.post-type-popupbuilder form table .check-column,.post-type-popupbuilder form table td,.post-type-sgpbautoresponder form table .check-column,.post-type-sgpbautoresponder form table td,.post-type-sgpbtemplate form table .check-column,.post-type-sgpbtemplate form table td{vertical-align:middle!important}.post-type-popupbuilder form table tbody tr,.post-type-sgpbautoresponder form table tbody tr,.post-type-sgpbtemplate form table tbody tr{background-color:#fff;position:relative}.post-type-popupbuilder form table tbody tr td,.post-type-popupbuilder form table tbody tr th,.post-type-sgpbautoresponder form table tbody tr td,.post-type-sgpbautoresponder form table tbody tr th,.post-type-sgpbtemplate form table tbody tr td,.post-type-sgpbtemplate form table tbody tr th{border-top:1px solid rgba(194,194,194,.31);color:#000}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select{padding:10px 20px;border-radius:5px;background-color:#f1f1f1;border:2px solid transparent;line-height:1.2;margin:0}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select:focus{border-color:transparent;box-shadow:none}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder select,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate select{padding-left:5px;min-width:120px}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input{background:0 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:10px 15px;border:2px solid transparent;line-height:1.2;font-weight:600;cursor:pointer}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:focus{background:0 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:10px 15px;border:2px solid transparent;line-height:1.2;font-weight:600;cursor:pointer}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input{color:#fff!important;background:#2873eb;border-color:#2873eb}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder input:hover,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder input:hover,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate input:hover,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder input:hover,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder input:hover,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate input:hover,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder input:hover,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder input:hover,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate input:hover{box-shadow:0 0 10px rgba(40,115,235,.4);background:#fff;color:#2873eb!important;border-color:#2873eb}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel{background:#fff;color:#000;border-color:#000}.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-popupbuilder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbautoresponder form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-popupbuilder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbautoresponder button.cancel:focus,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:active,.post-type-sgpbtemplate form table tbody tr.bulk-edit-sgpbtemplate button.cancel:focus{background:#fff;color:#000;border-color:#000}.post-type-popupbuilder form table tr.sgpb-popups-table-selected-row,.post-type-sgpbautoresponder form table tr.sgpb-popups-table-selected-row,.post-type-sgpbtemplate form table tr.sgpb-popups-table-selected-row{background-color:rgba(40,115,235,.1)}.post-type-popupbuilder form table .row-actions,.post-type-sgpbautoresponder form table .row-actions,.post-type-sgpbtemplate form table .row-actions{display:none}.post-type-popupbuilder form table .column-options,.post-type-sgpbautoresponder form table .column-options,.post-type-sgpbtemplate form table .column-options{display:flex;justify-content:space-around}.post-type-popupbuilder form table .column-options .icon,.post-type-sgpbautoresponder form table .column-options .icon,.post-type-sgpbtemplate form table .column-options .icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%}.post-type-popupbuilder form table .column-options .icon_edit,.post-type-popupbuilder form table .column-options .icon_remove,.post-type-sgpbautoresponder form table .column-options .icon_edit,.post-type-sgpbautoresponder form table .column-options .icon_remove,.post-type-sgpbtemplate form table .column-options .icon_edit,.post-type-sgpbtemplate form table .column-options .icon_remove{width:40px;height:40px}.post-type-popupbuilder form table .column-options .icon_clone,.post-type-sgpbautoresponder form table .column-options .icon_clone,.post-type-sgpbtemplate form table .column-options .icon_clone{width:35px;height:35px}.post-type-popupbuilder form table .column-options .icon_blue,.post-type-sgpbautoresponder form table .column-options .icon_blue,.post-type-sgpbtemplate form table .column-options .icon_blue{background:#b5caec}.post-type-popupbuilder form table .column-options .icon_pink,.post-type-sgpbautoresponder form table .column-options .icon_pink,.post-type-sgpbtemplate form table .column-options .icon_pink{background:#ffcece}.post-type-popupbuilder form table .column-options .icon img,.post-type-sgpbautoresponder form table .column-options .icon img,.post-type-sgpbtemplate form table .column-options .icon img{cursor:pointer}.post-type-popupbuilder form table .column-counter div,.post-type-sgpbautoresponder form table .column-counter div,.post-type-sgpbtemplate form table .column-counter div{max-width:80px;display:flex;justify-content:space-around}.post-type-popupbuilder form table .column-counter div input,.post-type-sgpbautoresponder form table .column-counter div input,.post-type-sgpbtemplate form table .column-counter div input{background:#fff;color:#000;border-color:#000;border-radius:5px;line-height:1.2;padding:5px 10px;cursor:pointer}.post-type-popupbuilder form table .column-className input,.post-type-popupbuilder form table .column-shortcode input,.post-type-sgpbautoresponder form table .column-className input,.post-type-sgpbautoresponder form table .column-shortcode input,.post-type-sgpbtemplate form table .column-className input,.post-type-sgpbtemplate form table .column-shortcode input{background:0 0;border-width:1px;border-color:#c2c2c2}.post-type-popupbuilder form table .check-column,.post-type-sgpbautoresponder form table .check-column,.post-type-sgpbtemplate form table .check-column{padding:0 0 0 5px!important}.post-type-popupbuilder form table .column-title a,.post-type-sgpbautoresponder form table .column-title a,.post-type-sgpbtemplate form table .column-title a{color:#2873eb}.post-type-popupbuilder form table tfoot,.post-type-sgpbautoresponder form table tfoot,.post-type-sgpbtemplate form table tfoot{display:none}.post-type-popupbuilder form .tablenav.bottom,.post-type-sgpbautoresponder form .tablenav.bottom,.post-type-sgpbtemplate form .tablenav.bottom{display:none}.post-type-popupbuilder form .pagination-links,.post-type-sgpbautoresponder form .pagination-links,.post-type-sgpbtemplate form .pagination-links{display:flex;justify-content:flex-end;align-items:center;margin-top:30px;margin-bottom:30px;font-size:16px;font-weight:700}.post-type-popupbuilder form .pagination-links .disabled,.post-type-sgpbautoresponder form .pagination-links .disabled,.post-type-sgpbtemplate form .pagination-links .disabled{display:none}.post-type-popupbuilder form .pagination-links .paging-input,.post-type-sgpbautoresponder form .pagination-links .paging-input,.post-type-sgpbtemplate form .pagination-links .paging-input{order:-1}.post-type-popupbuilder form .pagination-links a.button,.post-type-sgpbautoresponder form .pagination-links a.button,.post-type-sgpbtemplate form .pagination-links a.button{background:0 0;border:none;font-size:22px;color:#000;font-weight:700;min-height:28px;line-height:1.2}.post-type-popupbuilder form .pagination-links a.button .screen-reader-text,.post-type-sgpbautoresponder form .pagination-links a.button .screen-reader-text,.post-type-sgpbtemplate form .pagination-links a.button .screen-reader-text{display:none}.post-type-popupbuilder form .pagination-links a.button:active,.post-type-popupbuilder form .pagination-links a.button:focus,.post-type-sgpbautoresponder form .pagination-links a.button:active,.post-type-sgpbautoresponder form .pagination-links a.button:focus,.post-type-sgpbtemplate form .pagination-links a.button:active,.post-type-sgpbtemplate form .pagination-links a.button:focus{background:0 0;border:none;font-size:22px;color:#000;font-weight:700;height:auto;min-height:auto;line-height:1.2;outline:0;box-shadow:none}.post-type-popupbuilder #wpwrap,.post-type-sgpbautoresponder #wpwrap,.post-type-sgpbtemplate #wpwrap{background:#fff}body.post-type-popupbuilder.rtl .sgpb-header-h1{text-align:right}body.post-type-popupbuilder.rtl .sgpb-options-content{right:unset;left:0}body.post-type-popupbuilder.rtl .sgpb-onOffSwitch-inner{margin-left:unset;margin-right:-100%}body.post-type-popupbuilder.rtl .sgpb-onOffSwitch-inner:after,body.post-type-popupbuilder.rtl .sgpb-onOffSwitch-inner:before{float:right}body.post-type-popupbuilder.rtl .sgpb-onOffSwitch-inner:before{padding-right:9px}body.post-type-popupbuilder.rtl .sgpb-onOffSwitch-inner:after{text-align:left;padding-left:10px}body.post-type-popupbuilder.rtl .sgpb-onOffSwitch-switch{right:unset;left:32px}body.post-type-popupbuilder.rtl .sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-inner{margin-right:0}body.post-type-popupbuilder.rtl .sgpb-onOffSwitch input[type=checkbox]:checked+.sgpb-onOffSwitch__label .sgpb-onOffSwitch-switch{left:2px;right:unset;background-color:#2873eb}body.post-type-popupbuilder.rtl .sgpb .formItem__title{margin-right:unset;margin-left:20px}body.post-type-popupbuilder.rtl .sgpb--group{flex-direction:row-reverse}body.post-type-popupbuilder.rtl .sgpb-box-plus{right:unset;left:-5%;margin-right:11px;margin-left:unset}body.post-type-popupbuilder.rtl .sgpb-box-img{margin-right:unset;margin-left:22px}body.post-type-popupbuilder.rtl .sgpb-box:hover img{transform:translate(23px,-23px)}body.post-type-popupbuilder.rtl .sgpb-license:nth-child(even){margin-right:30px}body.post-type-popupbuilder.rtl .sgpb-license:nth-child(odd){margin-right:unset}body.post-type-sgpbautoresponder.rtl .sgpb--group{flex-direction:row-reverse}body.post-type-sgpbtemplate.rtl .sgpb--group{flex-direction:row-reverse}body.post-type-popupbuilder.rtl form input[type=checkbox]:before,body.post-type-sgpbautoresponder.rtl form input[type=checkbox]:before,body.post-type-sgpbtemplate.rtl form input[type=checkbox]:before{left:unset;right:17%}@media screen and (max-width:1250px) and (min-width:1100px){.sgpb .sgpb-options-menu{padding:12px}.sgpb .sgpb-options-menu h3{font-size:14px}.sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:0 3px!important;line-height:1.7!important;margin:0 2px!important}.edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1350px) and (min-width:1250px){.sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.edit-post-meta-boxes-area .postbox>.inside{padding:0}}@media screen and (max-width:1500px) and (min-width:1310px){.sgpb .sgpb-options-menu{padding:15px}.sgpb .sgpb-options-menu h3{font-size:15px}.sgpb .sgpb-options-content{padding:0 0 0 20px}.sgpb .formItem input[type=email]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=number]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=text]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker),.sgpb .sgpb .formItem input[type=url]:not(.sgpb-mailchimp-input):not(.js-registration-text-inputs):not(.js-login-text-inputs):not(.text):not(.wp-color-picker){padding:5px!important;line-height:2!important;margin:5px!important}.edit-post-meta-boxes-area .postbox>.inside{padding:0}}
  • popup-builder/trunk/public/css/popupAdminStyles.css

    r2664345 r2725980  
    1313h2{margin-bottom:20px}.sgpb-wrapper input[type="radio"]:checked:before{margin:3px
    14143px 0 !important}.sgpb-wrapper input[type="checkbox"]:focus{outline:0
    15 !important}.sgpb-wrapper input[type=checkbox]:checked:before{margin:-4px 0 0 -5px}.sgpb-col-md{display:inline-block;width:150px}.sgpb-rules-or
     15!important}.sgpb-wrapper input[type=checkbox]:checked:before{margin:-4px 0 0 -5px}.rtl .sgpb-wrapper input[type=checkbox]:checked:before{margin:-4px -5px 0 0}.sgpb-col-md{display:inline-block;width:150px}.sgpb-rules-or
    1616span{background:#fff;position:relative;top:-8px;padding:2px
    171710px}.sgpb-wrapper
     
    6464url('fonts/popupbuilder-button-icon.ttf') format('truetype'),
    6565url('fonts/popupbuilder-button-icon.svg#popupbuilder-button-icon') format('svg');font-weight:normal;font-style:normal}[class*='dashicons-menu-icon-sgpb-button']:before{display:inline-block;font-family:'popupbuilder-button-icon';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.dashicons-menu-icon-sgpb-button:before{content:'\0042';margin:0
    66 9px 0 -5px !important}.dashicons-menu-icon-sgpb-button{padding-left:5px !important}.dashicons-menu-icon-sgpb-button+span{vertical-align:middle !important}.sgpb-banner-logo-link{display:block}.sgpb-banner-logo-link:focus,.sgpb-banner-logo-link:hover,.sgpb-banner-logo-link:active{outline:0;border:none;-moz-outline-style:none;box-shadow:none}.sgpb-dont-show-again{position:absolute;bottom:7px;right:22px;cursor:pointer;color:#fff !important}.sgpb-dont-show-again:hover{color:#30c2f3 !important}.sgpb-dont-show-again-license-notice{position:absolute;bottom:7px;right:15px;cursor:pointer;color:#000 !important;font-size:13px;font-style:italic}.sgpb-dont-show-again-license-notice:hover{color:#0073aa !important}.sgpb-info-close{float:right;color:#fff;position:absolute;right:21px;font-size:30px;top:4px;cursor:pointer;transform:rotate(45deg);margin:-3px -3px 0}.sgpb-info-close:hover{color:#30c2f3}.sgpb-info-text-white{color:#fff !important;margin-right:10px}.sgpb-banner-links{color:#30c2f3 !important;text-decoration:none !important;font-size:18px !important;font-weight:lighter !important}.sgpb-banner-links:hover{color:#00a0d2 !important}.sgpb-info-menu{text-align:left !important;list-style-type:none !important;margin-top:23px !important;margin-left:6px !important}.sgpb-info-menu
     669px 0 -5px !important}.dashicons-menu-icon-sgpb-button{padding-left:5px !important}.dashicons-menu-icon-sgpb-button+span{vertical-align:middle !important}.sgpb-banner-logo-link{display:block}.sgpb-banner-logo-link:focus,.sgpb-banner-logo-link:hover,.sgpb-banner-logo-link:active{outline:0;border:none;-moz-outline-style:none;box-shadow:none}.sgpb-dont-show-again{position:absolute;bottom:7px;right:22px;cursor:pointer;color:#fff !important}.sgpb-dont-show-again:hover{color:#30c2f3 !important}.sgpb-dont-show-again-license-notice{position:absolute;bottom:7px;right:15px;cursor:pointer;color:#000 !important;font-size:13px;font-style:italic}.sgpb-dont-show-again-license-notice:hover{color:#0073aa !important}.sgpb-info-close{float:right;color:#fff;position:absolute;right:21px;font-size:30px;top:4px;cursor:pointer;transform:rotate(45deg);margin:-3px -3px 0}.sgpb-info-close:hover{color:#30c2f3}.sgpb-info-text-white{color:#fff !important;margin-right:10px}.rtl .sgpb-info-text-white{margin-right:unset;margin-left:10px}.sgpb-banner-links{color:#30c2f3 !important;text-decoration:none !important;font-size:18px !important;font-weight:lighter !important}.sgpb-banner-links:hover{color:#00a0d2 !important}.sgpb-info-menu{text-align:left !important;list-style-type:none !important;margin-top:23px !important;margin-left:6px !important}.sgpb-info-menu
    6767li{padding-bottom:8px !important}.sgpb-banner-wrapper{clear:both;overflow:hidden;padding-top:20px;margin-right:20px}.sgpb-review-popup-banner-wrapper{clear:both;overflow:hidden;padding-top:20px;margin:10px
    686820px 10px 0;background-color:#fff}.sgpb-review-popup-banner-wrapper h1,
     
    8080solid #ddd !important}.sgpb-editor-options-tabs-wrapper input:hover{background-color:#ccc !important;color:#636363 !important}.sgpb-editor-options-tabs-wrapper .sgpb-active-tab{background-color:#f7f7f7 !important;box-shadow:none !important;border-bottom:1px solid #f7f7f7 !important}.sgpb-editor-tab-links{background-color:#fff}.sgpb-editor-tab-2{border-left:none !important}.sgpb-notification-center-wrapper{margin-right:21px;padding:20px
    818120px 0 !important;border:1px
    82 solid
    83 #e5e5e5;background-color:#fdfdfd;box-shadow:0 1px 1px
    84 rgba(0, 0, 0, .04)}.sgpb-notification-center-wrapper
    85 h3{border-bottom:1px solid #ccc;padding-bottom:15px;padding-left:20px}.sgpb-notification-center-wrapper .dashicons-flag{color:#01B9FF}.sgpb-single-notification-wrapper{width:100%;display:inline-block;padding:0
    86 20px}.sgpb-each-notification-wrapper-js .sgpb-single-notification-wrapper:not(:first-child){margin:10px
     82solid #e5e5e5;background-color:#fdfdfd;box-shadow:0 1px 1px
     83rgba(0, 0, 0, .04)}.sgpb-notification-center-wrapper h3::after{content:' ';display:block;width:100%;height:1px;background:#ccc}.sgpb-notification-center-wrapper
     84h3{padding:0
     8520px}.sgpb-notification-center-wrapper .dashicons-flag{color:#01B9FF}.sgpb-single-notification-wrapper{width:100%;display:inline-block;padding:0
     8620px;box-sizing:border-box}.sgpb-each-notification-wrapper-js .sgpb-single-notification-wrapper:not(:first-child){margin:10px
    87870 0}.sgpb-single-notification-wrapper{margin-left:2px !important}.sgpb-each-notification-wrapper-js .sgpb-single-notification-wrapper:not(:first-child) .sgpb-single-notification-close-btn{}.sgpb-single-notification{display:inline-block;width:88%;min-height:25px;float:left;line-height:1.4;padding:11px
    888815px;font-size:14px;text-align:left;background-color:#fff;border-left:4px solid #01B9FF;box-shadow:0 1px 1px 0 rgba(0,0,0,.2)}.sgpb-single-notification-close-btn{width:8%;float:right}.sgpb-single-notification-wrapper
  • popup-builder/trunk/public/js/PopupBuilder.js

    r2704875 r2725980  
    407407{
    408408    if (typeof popupData == 'string') {
    409         var popupData = SGPBPopup.unserialize(popupData);
     409        var popupData = SGPBPopup.JSONParse(popupData);
    410410    }
    411411
     
    458458    var options = popupDataDiv.attr('data-options');
    459459
    460     return SGPBPopup.unserialize(options);
     460    return SGPBPopup.JSONParse(options);
    461461};
    462462
     
    18701870    }
    18711871};
    1872 
     1872SGPBPopup.JSONParse = function(data){
     1873    return JSON.parse(data);
     1874};
     1875
     1876// unused function!
    18731877SGPBPopup.b64DecodeUnicode = function(str)
    18741878{
     
    19481952};
    19491953
    1950 SGPBPopup.unserialize = function(data)
     1954// unused function!
     1955SGPBPopup.unserialize_old = function(data)
    19511956{
    19521957    data = SGPBPopup.b64DecodeUnicode(data);
  • popup-builder/trunk/public/views/newsletter.php

    r2686454 r2725980  
    115115                            continue;
    116116                        }
     117                        $fieldName = isset($field['fieldName']) ? $field['fieldName'] : ''
    117118                        ?>
    118                         <input type="button" id="sgpb-newsletter-shortcode-<?php echo esc_attr($index); ?>" class="sgpb-btn sgpb-btn-blue-light sgpb-margin-5 buttonGroup__button_shortcodes" value="<?php echo esc_attr(@$field['fieldName']); ?>" data-value="[<?php echo esc_attr(@$field['fieldName']);?>]">
     119                        <input type="button" id="sgpb-newsletter-shortcode-<?php echo esc_attr($index); ?>" class="sgpb-btn sgpb-btn-blue-light sgpb-margin-5 buttonGroup__button_shortcodes" value="<?php echo esc_attr($fieldName); ?>" data-value="[<?php echo esc_attr($fieldName);?>]">
    119120                        <?php
    120121                    }
  • popup-builder/trunk/public/views/otherConditionsView.php

    r2686454 r2725980  
    5757        right: 48%;
    5858    }
     59    .rtl #options-otherConditionsMetaBoxView .sgpb-unlock-options {
     60        position: absolute;
     61        top: 8%;
     62        left: 48%;
     63        right: unset;
     64    }
    5965</style>
  • popup-builder/trunk/readme.txt

    r2721110 r2725980  
    99Tested up to: 5.9
    1010Requires PHP: 5.3.3
    11 Stable tag: 4.1.7
     11Stable tag: 4.1.8
    1212License: GPLv2 or later
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2323Use the best WordPress popup plugin and enjoy the popup creation process.
    2424
    25 https://www.youtube.com/watch?v=-wFDJDjczeY
     25https://www.youtube.com/watch?v=CONvwuTdGYI
    2626
    2727**SUPER EASY AND SIMPLE TO USE**
     
    147147== Changelog ==
    148148
     149= Version 4.1.8 =
     150* Bug fixed related to popups that are set to appear with shortcodes and conditions
     151* Bug fixed related to JS error that blocks popup triggering
     152* Bug fixed related to layout on RTL sites
     153* Bug fixed related to compatibility error control operator in PHP 8
     154* Bug fixed related to conflict with Elementor
     155* Bug fixed related to errors that appear after installing the plugin
     156
    149157= Version 4.1.7 =
    150158* Improvement of Popup Builder button: the button has been added in Gutenberg editor
     
    538546== Upgrade Notice ==
    539547
    540 Current Version of Popup Builder is 4.1.7
     548Current Version of Popup Builder is 4.1.8
Note: See TracChangeset for help on using the changeset viewer.