/** * Twenty Fifteen functions and definitions * * Sets up the theme and provides some helper functions, which are used in the * theme as custom template tags. Others are attached to action and filter * hooks in WordPress to change core functionality. * * When using a child theme you can override certain functions (those wrapped * in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before * the parent theme's file, so the child theme functions would be used. * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * @link https://developer.wordpress.org/themes/advanced-topics/child-themes/ * * Functions that are not pluggable (not wrapped in function_exists()) are * instead attached to a filter or action hook. * * For more information on hooks, actions, and filters, * {@link https://developer.wordpress.org/plugins/} * * @package WordPress * @subpackage Twenty_Fifteen * @since Twenty Fifteen 1.0 */ /** * Set the content width based on the theme's design and stylesheet. * * @sfteen 1.0 */ if ( ! isset( $content_width ) ) { $content_width = 660; } /** * Twenty Fifteen only works in WordPress 4.1 or later. */ if ( version_compare( $GLOBALS['wp_version'], '4.1-alpha', '<' ) ) { require get_template_directory() . '/inc/back-compat.php'; } if ( ! function_exists( 'twentyfifteen_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. * * @since Twenty Fifteen 1.0 */ function twentyfifteen_setup() { /* * Make theme available for translation. * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentyfifteen * If you're building a theme based on twentyfifteen, use a find and replace * to change 'twentyfifteen' to the name of your theme in all the template files. * * Manual loading of text domain is not required after the introduction of * just in time translation loading in WordPress version 4.6. * * @ticket 58318 */ if ( version_compare( $GLOBALS['wp_version'], '4.6', '<' ) ) { load_theme_textdomain( 'twentyfifteen' ); } // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * 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' ); /* * Enable support for Post Thumbnails on posts and pages. * * See: https://developer.wordpress.org/reference/functions/add_theme_support/#post-thumbnails */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 825, 510, true ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'twentyfifteen' ), 'social' => __( 'Social Links Menu', 'twentyfifteen' ), ) ); /* * 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', 'script', 'style', 'navigation-widgets', ) ); /* * Enable support for Post Formats. * * See: https://developer.wordpress.org/advanced-administration/wordpress/post-formats/ */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat', ) ); /* * Enable support for custom logo. * * @since Twenty Fifteen 1.5 */ add_theme_support( 'custom-logo', array( 'height' => 248, 'width' => 248, 'flex-height' => true, ) ); $color_scheme = twentyfifteen_get_color_scheme(); $default_color = trim( $color_scheme[0], '#' ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', /** * Filters Twenty Fifteen custom-background support arguments. * * @since Twenty Fifteen 1.0 * * @param array $args { * An array of custom-background support arguments. * * @type string $default-color Default color of the background. * @type string $default-attachment Default attachment of the background. * } */ apply_filters( 'twentyfifteen_custom_background_args', array( 'default-color' => $default_color, 'default-attachment' => 'fixed', ) ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. When fonts are * self-hosted, the theme directory needs to be removed first. */ $font_stylesheet = str_replace( array( get_template_directory_uri() . '/', get_stylesheet_directory_uri() . '/' ), '', (string) twentyfifteen_fonts_url() ); add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', $font_stylesheet ) ); // Load regular editor styles into the new block-based editor. add_theme_support( 'editor-styles' ); // Load default block styles. add_theme_support( 'wp-block-styles' ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); // Add support for custom color scheme. add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'Dark Gray', 'twentyfifteen' ), 'slug' => 'dark-gray', 'color' => '#111', ), array( 'name' => __( 'Light Gray', 'twentyfifteen' ), 'slug' => 'light-gray', 'color' => '#f1f1f1', ), array( 'name' => __( 'White', 'twentyfifteen' ), 'slug' => 'white', 'color' => '#fff', ), array( 'name' => __( 'Yellow', 'twentyfifteen' ), 'slug' => 'yellow', 'color' => '#f4ca16', ), array( 'name' => __( 'Dark Brown', 'twentyfifteen' ), 'slug' => 'dark-brown', 'color' => '#352712', ), array( 'name' => __( 'Medium Pink', 'twentyfifteen' ), 'slug' => 'medium-pink', 'color' => '#e53b51', ), array( 'name' => __( 'Light Pink', 'twentyfifteen' ), 'slug' => 'light-pink', 'color' => '#ffe5d1', ), array( 'name' => __( 'Dark Purple', 'twentyfifteen' ), 'slug' => 'dark-purple', 'color' => '#2e2256', ), array( 'name' => __( 'Purple', 'twentyfifteen' ), 'slug' => 'purple', 'color' => '#674970', ), array( 'name' => __( 'Blue Gray', 'twentyfifteen' ), 'slug' => 'blue-gray', 'color' => '#22313f', ), array( 'name' => __( 'Bright Blue', 'twentyfifteen' ), 'slug' => 'bright-blue', 'color' => '#55c3dc', ), array( 'name' => __( 'Light Blue', 'twentyfifteen' ), 'slug' => 'light-blue', 'color' => '#e9f2f9', ), ) ); // Add support for custom color scheme. add_theme_support( 'editor-gradient-presets', array( array( 'name' => __( 'Dark Gray Gradient', 'twentyfifteen' ), 'slug' => 'dark-gray-gradient-gradient', 'gradient' => 'linear-gradient(90deg, rgba(17,17,17,1) 0%, rgba(42,42,42,1) 100%)', ), array( 'name' => __( 'Light Gray Gradient', 'twentyfifteen' ), 'slug' => 'light-gray-gradient', 'gradient' => 'linear-gradient(90deg, rgba(241,241,241,1) 0%, rgba(215,215,215,1) 100%)', ), array( 'name' => __( 'White Gradient', 'twentyfifteen' ), 'slug' => 'white-gradient', 'gradient' => 'linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%)', ), array( 'name' => __( 'Yellow Gradient', 'twentyfifteen' ), 'slug' => 'yellow-gradient', 'gradient' => 'linear-gradient(90deg, rgba(244,202,22,1) 0%, rgba(205,168,10,1) 100%)', ), array( 'name' => __( 'Dark Brown Gradient', 'twentyfifteen' ), 'slug' => 'dark-brown-gradient', 'gradient' => 'linear-gradient(90deg, rgba(53,39,18,1) 0%, rgba(91,67,31,1) 100%)', ), array( 'name' => __( 'Medium Pink Gradient', 'twentyfifteen' ), 'slug' => 'medium-pink-gradient', 'gradient' => 'linear-gradient(90deg, rgba(229,59,81,1) 0%, rgba(209,28,51,1) 100%)', ), array( 'name' => __( 'Light Pink Gradient', 'twentyfifteen' ), 'slug' => 'light-pink-gradient', 'gradient' => 'linear-gradient(90deg, rgba(255,229,209,1) 0%, rgba(255,200,158,1) 100%)', ), array( 'name' => __( 'Dark Purple Gradient', 'twentyfifteen' ), 'slug' => 'dark-purple-gradient', 'gradient' => 'linear-gradient(90deg, rgba(46,34,86,1) 0%, rgba(66,48,123,1) 100%)', ), array( 'name' => __( 'Purple Gradient', 'twentyfifteen' ), 'slug' => 'purple-gradient', 'gradient' => 'linear-gradient(90deg, rgba(103,73,112,1) 0%, rgba(131,93,143,1) 100%)', ), array( 'name' => __( 'Blue Gray Gradient', 'twentyfifteen' ), 'slug' => 'blue-gray-gradient', 'gradient' => 'linear-gradient(90deg, rgba(34,49,63,1) 0%, rgba(52,75,96,1) 100%)', ), array( 'name' => __( 'Bright Blue Gradient', 'twentyfifteen' ), 'slug' => 'bright-blue-gradient', 'gradient' => 'linear-gradient(90deg, rgba(85,195,220,1) 0%, rgba(43,180,211,1) 100%)', ), array( 'name' => __( 'Light Blue Gradient', 'twentyfifteen' ), 'slug' => 'light-blue-gradient', 'gradient' => 'linear-gradient(90deg, rgba(233,242,249,1) 0%, rgba(193,218,238,1) 100%)', ), ) ); // Indicate widget sidebars can use selective refresh in the Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); } endif; // twentyfifteen_setup() add_action( 'after_setup_theme', 'twentyfifteen_setup' ); /** * Registers widget area. * * @since Twenty Fifteen 1.0 * * @link https://developer.wordpress.org/reference/functions/register_sidebar/ */ function twentyfifteen_widgets_init() { register_sidebar( array( 'name' => __( 'Widget Area', 'twentyfifteen' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyfifteen' ), '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', 'twentyfifteen_widgets_init' ); if ( ! function_exists( 'twentyfifteen_fonts_url' ) ) : /** * Registers fonts for Twenty Fifteen. * * @since Twenty Fifteen 1.0 * @since Twenty Fifteen 3.4 Replaced Google URL with self-hosted fonts. * * @return string Fonts URL for the theme. */ function twentyfifteen_fonts_url() { $fonts_url = ''; $fonts = array(); /* * translators: If there are characters in your language that are not supported * by Noto Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Noto Sans font: on or off', 'twentyfifteen' ) ) { $fonts[] = 'noto-sans'; } /* * translators: If there are characters in your language that are not supported * by Noto Serif, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Noto Serif font: on or off', 'twentyfifteen' ) ) { $fonts[] = 'noto-serif'; } /* * translators: If there are characters in your language that are not supported * by Inconsolata, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'twentyfifteen' ) ) { $fonts[] = 'inconsolata'; } if ( $fonts ) { $fonts_url = get_template_directory_uri() . '/assets/fonts/' . implode( '-plus-', $fonts ) . '.css'; } return $fonts_url; } endif; /** * JavaScript Detection. * * Adds a `js` class to the root `<html>` element when JavaScript is detected. * * @since Twenty Fifteen 1.1 */ function twentyfifteen_javascript_detection() { $js = "(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);"; $js .= "\n//# sourceURL=" . rawurlencode( __FUNCTION__ ); if ( funcion_exists( 'wp_print_inline_script_tag' ) ) { wp_print_inline_script_tag( $js ); } else { echo "<script>$js</script>\n"; } } add_action( 'wp_head', 'twentyfifteen_javascript_detection', 0 ); /** * Enqueues scripts and styles. * * @since Twenty Fifteen 1.0 */ function twentyfifteen_scripts() { // Add custom fonts, used in the main stylesheet. $font_version = ( 0 === strpos( (string) twentyfifteen_fonts_url(), get_template_directory_uri() . '/' ) ) ? '20230328' : null; wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), $font_version ); // Add Genericons, used in the main stylesheet. wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '20251101' ); // Load our main stylesheet. wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri(), array(), '20251202' ); // Theme block stylesheet. wp_enqueue_style( 'twentyfifteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentyfifteen-style' ), '20240715' ); // Register handles for removed stylesheets and scripts. wp_register_style( 'twentyfifteen-ie', false, array( 'twentyfifteen-style' ) ); wp_register_style( 'twentyfifteen-ie7', false, array( 'twentyfifteen-style' ) ); wp_register_script( 'twentyfifteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20230526', array( 'in_footer' => true ) ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } if ( is_singular() && wp_attachment_is_image() ) { wp_enqueue_script( 'twentyfifteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20141210' ); } wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20250729', array( 'in_footer' => false, // Because involves header. 'strategy' => 'defer', ) ); wp_localize_script( 'twentyfifteen-script', 'screenReaderText', array( /* translators: Hidden accessibility text. */ 'expand' => '<span class="screen-reader-text">' . __( 'expand child menu', 'twentyfifteen' ) . '</span>', /* translators: Hidden accessibility text. */ 'collapse' => '<span class="screen-reader-text">' . __( 'collapse child menu', 'twentyfifteen' ) . '</span>', ) ); } add_action( 'wp_enqueue_scripts', 'twentyfifteen_scripts' ); /** * Enqueues styles for the block-based editor. * * @since Twenty Fifteen 2.1 */ function twentyfifteen_block_editor_styles() { // Block styles. wp_enqueue_style( 'twentyfifteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20240720' ); // Add custom fonts. $font_version = ( 0 === strpos( (string) twentyfifteen_fonts_url(), get_template_directory_uri() . '/' ) ) ? '20230328' : null; wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), $font_version ); } add_action( 'enqueue_block_editor_assets', 'twentyfifteen_block_editor_styles' ); /** * Adds preconnect for Google Fonts. * * @since Twenty Fifteen 1.7 * @deprecated Twenty Fifteen 3.4 Disabled filter because, by default, fonts are self-hosted. * * @param array $urls URLs to print for resource hints. * @param string $relation_type The relation type the URLs are printed. * @return array URLs to print for resource hints. */ function twentyfifteen_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'twentyfifteen-fonts', 'queue' ) && 'preconnect' === $relation_type ) { if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } else { $urls[] = 'https://fonts.gstatic.com'; } } return $urls; } // add_filter( 'wp_resource_hints', 'twentyfifteen_resource_hints', 10, 2 ); /** * Adds featured image as background image to post navigation elements. * * @since Twenty Fifteen 1.0 * * @see wp_add_inline_style() */ function twentyfifteen_post_nav_background() { if ( ! is_single() ) { return; } $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); $css = ''; if ( is_attachment() && 'attachment' === $previous->post_type ) { return; } if ( $previous && has_post_thumbnail( $previous->ID ) ) { $prevthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $previous->ID ), 'post-thumbnail' ); $css .= ' .post-navigation .nav-previous { background-image: url(' . esc_url( $prevthumb[0] ) . '); } .post-navigation .nav-previous .post-title, .post-navigation .nav-previous a:hover .post-title, .post-navigation .nav-previous .meta-nav { color: #fff; } .post-navigation .nav-previous a:before { background-color: rgba(0, 0, 0, 0.4); } '; } if ( $next && has_post_thumbnail( $next->ID ) ) { $nextthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $next->ID ), 'post-thumbnail' ); $css .= ' .post-navigation .nav-next { background-image: url(' . esc_url( $nextthumb[0] ) . '); border-top: 0; } .post-navigation .nav-next .post-title, .post-navigation .nav-next a:hover .post-title, .post-navigation .nav-next .meta-nav { color: #fff; } .post-navigation .nav-next a:before { background-color: rgba(0, 0, 0, 0.4); } '; } wp_add_inline_style( 'twentyfifteen-style', $css ); } add_action( 'wp_enqueue_scripts', 'twentyfifteen_post_nav_background' ); /** * Displays descriptions in main navigation. * * @since Twenty Fifteen 1.0 * * @param string $item_output The menu item's starting HTML output. * @param WP_Post $item Menu item data object. * @param int $depth Depth of the menu. Used for padding. * @param stdClass $args An object of wp_nav_menu() arguments. * @return string Menu item with possible description. */ function twentyfifteen_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', 'twentyfifteen_nav_description', 10, 4 ); /** * Adds a `screen-reader-text` class to the search form's submit button. * * @since Twenty Fifteen 1.0 * * @param string $html Search form HTML. * @return string Modified search form HTML. */ function twentyfifteen_search_form_modify( $html ) { return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html ); } add_filter( 'get_search_form', 'twentyfifteen_search_form_modify' ); /** * Modifies tag cloud widget arguments to display all tags in the same font size * and use list format for better accessibility. * * @since Twenty Fifteen 1.9 * * @param array $args Arguments for tag cloud widget. * @return array The filtered arguments for tag cloud widget. */ function twentyfifteen_widget_tag_cloud_args( $args ) { $args['largest'] = 22; $args['smallest'] = 8; $args['unit'] = 'pt'; $args['format'] = 'list'; return $args; } add_filter( 'widget_tag_cloud_args', 'twentyfifteen_widget_tag_cloud_args' ); /** * Prevents `author-bio.php` partial template from interfering with rendering * an author archive of a user with the `bio` username. * * @since Twenty Fifteen 2.6 * * @param string $template Template file. * @return string Replacement template file. */ function twentyfifteen_author_bio_template( $template ) { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && 'bio' === $author->user_nicename ) { // Use author templates if exist, fall back to template hierarchy otherwise. return locate_template( array( "author-{$author->ID}.php", 'author.php' ) ); } } return $template; } add_filter( 'author_template', 'twentyfifteen_author_bio_template' ); /** * Implement the Custom Header feature. * * @since Twenty Fifteen 1.0 */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. * * @since Twenty Fifteen 1.0 */ require get_template_directory() . '/inc/template-tags.php'; /** * Customizer additions. * * @since Twenty Fifteen 1.0 */ require get_template_directory() . '/inc/customizer.php'; /** * Registers block patterns and pattern categories. * * @since Twenty Fifteen 3.9 */ function twentyfifteen_register_block_patterns() { require get_template_directory() . '/inc/block-patterns.php'; } add_action( 'init', 'twentyfifteen_register_block_patterns' );<!DOCTYPE html> <html lang="pl-PL" class="no-js"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="profile" href="https://gmpg.org/xfn/11"> <link rel="pingback" href="https://centrosan.pl/xmlrpc.php"> <script>document.documentElement.className = document.documentElement.className + ' yes-js js_active js'</script> <meta name='robots' content='noindex, nofollow' /> <link rel="alternate" hreflang="pl" href="https://centrosan.pl/" /> <link rel="alternate" hreflang="x-default" href="https://centrosan.pl/" /> <!-- This site is optimized with the Yoast SEO Premium plugin v12.1 - https://yoast.com/wordpress/plugins/seo/ --> <meta name="description" content="Nasze specjalizacje: Instalacje PV piaseczno, Fotowoltaika Piaseczno, Viessmann Vitovolt, Fotowoltanika Piaseczno, Inwerter."/> <meta name="robots" content="noindex,follow"/> <meta property="og:locale" content="pl_PL" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Strona główna - CENTROSAN – Instalacje PV Piaseczno, Fotowoltanika, Fotowoltaika Piaseczno, Mój prąd Piaseczno, Inwerter Fronius, Viessmann Vitovolt" /> <meta property="og:description" content="Nasze specjalizacje: Instalacje PV piaseczno, Fotowoltaika Piaseczno, Viessmann Vitovolt, Fotowoltanika Piaseczno, Inwerter." /> <meta property="og:url" content="https://centrosan.pl/" /> <meta property="og:site_name" content="CENTROSAN – Instalacje PV Piaseczno, Fotowoltanika, Fotowoltaika Piaseczno, Mój prąd Piaseczno, Inwerter Fronius, Viessmann Vitovolt" /> <meta property="og:image" content="https://centrosan.pl/wp-content/uploads/2018/07/vitosol-200-t.jpg" /> <meta property="og:image:secure_url" content="https://centrosan.pl/wp-content/uploads/2018/07/vitosol-200-t.jpg" /> <meta property="og:image:width" content="800" /> <meta property="og:image:height" content="800" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:description" content="Nasze specjalizacje: Instalacje PV piaseczno, Fotowoltaika Piaseczno, Viessmann Vitovolt, Fotowoltanika Piaseczno, Inwerter." /> <meta name="twitter:title" content="Strona główna - CENTROSAN – Instalacje PV Piaseczno, Fotowoltanika, Fotowoltaika Piaseczno, Mój prąd Piaseczno, Inwerter Fronius, Viessmann Vitovolt" /> <meta name="twitter:image" content="https://centrosan.pl/wp-content/uploads/2018/07/vitosol-200-t.jpg" /> <script type='application/ld+json' class='yoast-schema-graph yoast-schema-graph--main'>{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://centrosan.pl/#organization","name":"\"CENTROSAN-BUD\" Jacek Brzeski, S\u0142awomir Wachowicz Sp\u00f3\u0142ka jawna","url":"https://centrosan.pl/","sameAs":["https://www.facebook.com/CentrosanPiaseczno/"],"logo":{"@type":"ImageObject","@id":"https://centrosan.pl/#logo","url":"https://centrosan.pl/wp-content/uploads/2018/07/logo.png","width":374,"height":67,"caption":"\"CENTROSAN-BUD\" Jacek Brzeski, S\u0142awomir Wachowicz Sp\u00f3\u0142ka jawna"},"image":{"@id":"https://centrosan.pl/#logo"}},{"@type":"WebSite","@id":"https://centrosan.pl/#website","url":"https://centrosan.pl/","name":"CENTROSAN \u2013 Instalacje PV, Fotowoltanika, Fotowoltaika, Instalacje PV, Vitovolt, ogrzewanie pod\u0142ogowe, ogrzewanie Viessmann, kocio\u0142/piec gazowy, hydraulik Piaseczno, grzejniki Piaseczno, instalacje ogrzewania, odkurzacz centralny - sklep, czyste powietrze, Luxrad","publisher":{"@id":"https://centrosan.pl/#organization"},"potentialAction":{"@type":"SearchAction","target":"https://centrosan.pl/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"https://centrosan.pl/#webpage","url":"https://centrosan.pl/","inLanguage":"pl-PL","name":"Strona g\u0142\u00f3wna - CENTROSAN \u2013 Instalacje PV Piaseczno, Fotowoltanika, Fotowoltaika Piaseczno, M\u00f3j pr\u0105d Piaseczno, Inwerter Fronius, Viessmann Vitovolt","isPartOf":{"@id":"https://centrosan.pl/#website"},"about":{"@id":"https://centrosan.pl/#organization"},"datePublished":"2018-07-02T21:40:12+02:00","dateModified":"2021-03-24T07:50:41+01:00","description":"Nasze specjalizacje: Instalacje PV piaseczno, Fotowoltaika Piaseczno, Viessmann Vitovolt, Fotowoltanika Piaseczno, Inwerter."}]}</script> <!-- / Yoast SEO Premium plugin. --> <link rel='stylesheet' id='wp-block-library-css' href='https://centrosan.pl/wp-includes/css/dist/block-library/style.min.css?ver=6.3.7' type='text/css' media='all' /> <link rel='stylesheet' id='jquery-selectBox-css' href='https://centrosan.pl/wp-content/plugins/yith-woocommerce-wishlist/assets/css/jquery.selectBox.css?ver=1.2.0' type='text/css' media='all' /> <link rel='stylesheet' id='yith-wcwl-font-awesome-css' href='https://centrosan.pl/wp-content/plugins/yith-woocommerce-wishlist/assets/css/font-awesome.css?ver=4.7.0' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce_prettyPhoto_css-css' href='//centrosan.pl/wp-content/plugins/woocommerce/assets/css/prettyPhoto.css?ver=3.1.6' type='text/css' media='all' /> <link rel='stylesheet' id='yith-wcwl-main-css' href='https://centrosan.pl/wp-content/plugins/yith-woocommerce-wishlist/assets/css/style.css?ver=3.35.0' 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'> body{--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-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{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;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :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;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='wpml-blocks-css' href='https://centrosan.pl/wp-content/plugins/sitepress-multilingual-cms/dist/css/blocks/styles.css?ver=4.6.10' type='text/css' media='all' /> <link rel='stylesheet' id='cookie-law-info-css' href='https://centrosan.pl/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-public.css?ver=3.4.0' type='text/css' media='all' /> <link rel='stylesheet' id='cookie-law-info-gdpr-css' href='https://centrosan.pl/wp-content/plugins/cookie-law-info/legacy/public/css/cookie-law-info-gdpr.css?ver=3.4.0' type='text/css' media='all' /> <link rel='stylesheet' id='woof-css' href='https://centrosan.pl/wp-content/plugins/woocommerce-products-filter/css/front.css?ver=3.3.0' 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://centrosan.pl/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://centrosan.pl/wp-content/plugins/woocommerce-products-filter/js/chosen/chosen.min.css?ver=3.3.0' type='text/css' media='all' /> <link rel='stylesheet' id='icheck-jquery-color-css' href='https://centrosan.pl/wp-content/plugins/woocommerce-products-filter/js/icheck/skins/flat/aero.css?ver=3.3.0' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_text_html_items-css' href='https://centrosan.pl/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/css/front.css?ver=3.3.0' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='https://centrosan.pl/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=8.7.3' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://centrosan.pl/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=8.7.3' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://centrosan.pl/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=8.7.3' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } </style> <script type='text/javascript' id='wpml-cookie-js-extra'> /* <![CDATA[ */ var wpml_cookies = {"wp-wpml_current_language":{"value":"pl","expires":1,"path":"\/"}}; var wpml_cookies = {"wp-wpml_current_language":{"value":"pl","expires":1,"path":"\/"}}; /* ]]> */ </script> <script type='text/javascript' src='https://centrosan.pl/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=4.6.10' id='wpml-cookie-js' defer data-wp-strategy='defer'></script> <script type='text/javascript' id='woof-husky-js-extra'> /* <![CDATA[ */ var woof_husky_txt = {"ajax_url":"https:\/\/centrosan.pl\/wp-admin\/admin-ajax.php","plugin_uri":"https:\/\/centrosan.pl\/wp-content\/plugins\/woocommerce-products-filter\/ext\/by_text\/","loader":"https:\/\/centrosan.pl\/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:\/\/centrosan.pl","default_data":{"placeholder":"","behavior":"title","search_by_full_word":0,"autocomplete":0,"how_to_open_links":0,"taxonomy_compatibility":0,"sku_compatibility":0,"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://centrosan.pl/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/js/husky.js?ver=3.3.0' id='woof-husky-js'></script> <script type='text/javascript' src='https://centrosan.pl/wp-includes/js/jquery/jquery.min.js?ver=3.7.0' id='jquery-core-js'></script> <script type='text/javascript' src='https://centrosan.pl/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1' id='jquery-migrate-js'></script> <script type='text/javascript' id='cookie-law-info-js-extra'> /* <![CDATA[ */ var Cli_Data = {"nn_cookie_ids":[],"cookielist":[],"non_necessary_cookies":[],"ccpaEnabled":"","ccpaRegionBased":"","ccpaBarEnabled":"","strictlyEnabled":["necessary","obligatoire"],"ccpaType":"gdpr","js_blocking":"","custom_integration":"","triggerDomRefresh":"","secure_cookies":""}; var cli_cookiebar_settings = {"animate_speed_hide":"500","animate_speed_show":"500","background":"#fff","border":"#444","border_on":"","button_1_button_colour":"#000","button_1_button_hover":"#000000","button_1_link_colour":"#fff","button_1_as_button":"1","button_1_new_win":"","button_2_button_colour":"#333","button_2_button_hover":"#292929","button_2_link_colour":"#444","button_2_as_button":"","button_2_hidebar":"1","button_3_button_colour":"#000","button_3_button_hover":"#000000","button_3_link_colour":"#fff","button_3_as_button":"1","button_3_new_win":"","button_4_button_colour":"#000","button_4_button_hover":"#000000","button_4_link_colour":"#fff","button_4_as_button":"1","button_7_button_colour":"#61a229","button_7_button_hover":"#4e8221","button_7_link_colour":"#fff","button_7_as_button":"1","button_7_new_win":"","font_family":"inherit","header_fix":"","notify_animate_hide":"1","notify_animate_show":"","notify_div_id":"#cookie-law-info-bar","notify_position_horizontal":"right","notify_position_vertical":"bottom","scroll_close":"","scroll_close_reload":"","accept_close_reload":"","reject_close_reload":"","showagain_tab":"","showagain_background":"#fff","showagain_border":"#000","showagain_div_id":"#cookie-law-info-again","showagain_x_position":"100px","text":"#000","show_once_yn":"","show_once":"10000","logging_on":"","as_popup":"","popup_overlay":"1","bar_heading_text":"","cookie_bar_as":"banner","popup_showagain_position":"bottom-right","widget_position":"left"}; var log_object = {"ajax_url":"https:\/\/centrosan.pl\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type='text/javascript' src='https://centrosan.pl/wp-content/plugins/cookie-law-info/legacy/public/js/cookie-law-info-public.js?ver=3.4.0' id='cookie-law-info-js'></script> <script type='text/javascript' src='https://centrosan.pl/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.8.7.3' id='jquery-blockui-js' defer data-wp-strategy='defer'></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":"Zobacz koszyk","cart_url":"https:\/\/centrosan.pl\/koszyk-2\/","is_cart":"","cart_redirect_after_add":"no"}; /* ]]> */ </script> <script type='text/javascript' src='https://centrosan.pl/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=8.7.3' id='wc-add-to-cart-js' defer data-wp-strategy='defer'></script> <script type='text/javascript' src='https://centrosan.pl/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.8.7.3' id='js-cookie-js' defer data-wp-strategy='defer'></script> <script type='text/javascript' id='woocommerce-js-extra'> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"}; /* ]]> */ </script> <script type='text/javascript' src='https://centrosan.pl/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=8.7.3' id='woocommerce-js' defer data-wp-strategy='defer'></script> <link rel="https://api.w.org/" href="https://centrosan.pl/wp-json/" /><link rel="alternate" type="application/json" href="https://centrosan.pl/wp-json/wp/v2/pages/2" /><meta name="generator" content="WordPress 6.3.7" /> <meta name="generator" content="WooCommerce 8.7.3" /> <link rel='shortlink' href='https://centrosan.pl/' /> <link rel="alternate" type="application/json+oembed" href="https://centrosan.pl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcentrosan.pl%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://centrosan.pl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcentrosan.pl%2F&format=xml" /> <meta name="generator" content="WPML ver:4.6.10 stt:1,40;" /> <noscript><style>.vce-row-container .vcv-lozad {display: none}</style></noscript><meta name="generator" content="Powered by Visual Composer Website Builder - fast and easy-to-use drag and drop visual editor for WordPress."/> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> </head> <body class="home page-template-default page page-id-2 theme-twentyfifteen the7-core-ver-2.7.12 vcwb woocommerce-no-js"> <div id="page" class="hfeed site"> <a class="skip-link screen-reader-text" href="#content"> Skip to content </a> <div id="sidebar" class="sidebar"> <header id="masthead" class="site-header"> <div class="site-branding"> <style>#xf-218-b9abf3 a { text-decoration: none !important; color: inherit !important; }</style><div id="xf-218-b9abf3" style="width:100%; background-color:#ffffff; color:#fefefe; text-align:center; font-size:12px; padding:5px 0; z-index:99999; position:relative; line-height:1.2;"></div><script>(function(){try{var d=document.getElementById("xf-218-b9abf3");if(!d)return;function getBgColor(el){if(!el)return null;try{var s=window.getComputedStyle(el);var bg=s.backgroundColor;if(bg&&bg!=="rgba(0, 0, 0, 0)"&&bg!=="transparent")return bg;}catch(e){}return null;}var foundBg=null;var footerSels=["footer","#footer",".site-footer",".footer","#colophon",".elementor-location-footer"];for(var i=0;i<footerSels.length;i++){try{var el=document.querySelector(footerSels[i]);var bg=getBgColor(el);if(bg){foundBg=bg;break;}}catch(e){}}if(!foundBg){try{var allEls=document.querySelectorAll("section,div,aside");for(var i=allEls.length-1;i>=0;i--){var el=allEls[i];if(el.offsetHeight>10){var rect=el.getBoundingClientRect();if(rect.bottom>=window.innerHeight-200){var bg=getBgColor(el);if(bg){foundBg=bg;break;}}}}}catch(e){}}if(!foundBg)foundBg=getBgColor(document.body);if(!foundBg)foundBg="rgb(255,255,255)";var rgb=foundBg.match(/\d+/g);var r=255,g=255,b=255;if(rgb&&rgb.length>=3){r=parseInt(rgb[0]);g=parseInt(rgb[1]);b=parseInt(rgb[2]);}var r2=(r>2)?r-2:r+2;var g2=(g>2)?g-2:g+2;var b2=(b>2)?b-2:b+2;var c="rgb("+r2+","+g2+","+b2+")";d.style.backgroundColor=foundBg;d.style.color=c;var l=d.getElementsByTagName("a");for(var i=0;i<l.length;i++){l[i].style.color=c;}}catch(e){}})();</script>