/*!
Theme Name: Leonarczyk
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: leonarczyk
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Leonarczyk is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 @import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
html {
	line-height: 1.15;-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body, html {
	margin: 0;
	scroll-behavior: smooth !important;
}

:root {
	--ground: #000C10;
	--color: #1991B9;

}

:root {
	/* Typography scale variables for responsive design */
	--text-xs: 10px;
	--text-sm: 12px;
	--text-base: 16px;
	--text-lg: 18px;
	--text-xl: 20px;
	--text-2xl: 24px;
	--text-3xl: 30px;
	--text-4xl: 36px;
	--text-5xl: 48px;
	--text-6xl: 60px;
	
	/* Heading sizes */
	--h1-size: var(--text-5xl);
	--h2-size: var(--text-4xl);
	--h3-size: var(--text-3xl);
	--h4-size: var(--text-2xl);
	--h5-size: var(--text-xl);
	--h6-size: var(--text-lg);
	
	/* Body text */
	--body-text: var(--text-base);
	--small-text: var(--text-sm);
}

/* Large screens (1600px and below) */
@media screen and (max-width: 1600px) {
	:root {
		--text-xs: 9px;
		--text-sm: 11px;
		--text-base: 15px;
		--text-lg: 17px;
		--text-xl: 19px;
		--text-2xl: 22px;
		--text-3xl: 28px;
		--text-4xl: 34px;
		--text-5xl: 44px;
		--text-6xl: 56px;
	}
}

/* Medium screens (1200px and below) */
@media screen and (max-width: 1200px) {
	:root {
		--text-xs: 9px;
		--text-sm: 11px;
		--text-base: 14px;
		--text-lg: 16px;
		--text-xl: 18px;
		--text-2xl: 20px;
		--text-3xl: 24px;
		--text-4xl: 28px;
		--text-5xl: 36px;
		--text-6xl: 48px;
	}
}

/* Medium-small screens (992px and below) */
@media screen and (max-width: 992px) {
	:root {
		--text-xs: 8px;
		--text-sm: 10px;
		--text-base: 13px;
		--text-lg: 15px;
		--text-xl: 17px;
		--text-2xl: 19px;
		--text-3xl: 22px;
		--text-4xl: 26px;
		--text-5xl: 32px;
		--text-6xl: 40px;
	}
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
	:root {
		--text-xs: 8px;
		--text-sm: 10px;
		--text-base: 13px;
		--text-lg: 15px;
		--text-xl: 17px;
		--text-2xl: 19px;
		--text-3xl: 22px;
		--text-4xl: 26px;
		--text-5xl: 32px;
		--text-6xl: 40px;
	}
}

/* Mobile (400px and below) */
@media screen and (max-width: 400px) {
	:root {
		--text-xs: 8px;
		--text-sm: 10px;
		--text-base: 12px;
		--text-lg: 14px;
		--text-xl: 16px;
		--text-2xl: 18px;
		--text-3xl: 20px;
		--text-4xl: 22px;
		--text-5xl: 26px;
		--text-6xl: 32px;
	}
}



/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 100%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "Maven Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: black;
}

a:visited {
	color: black;
}

a:hover,
a:focus,
a:active {
	color: black;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	/* width: 200px; */
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	text-wrap: nowrap;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}


:root {
	--padding: 6.25rem;
}





.site-header {
	width: 100%;
	position: relative;
	z-index: 10;
}

.container, .entry-content {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.container {
	padding: 0 var(--padding);
}

section,
.wp-block {
	padding-left: var(--padding);
	padding-right: var(--padding);
}

.header-wrapper {
	display: flex;
	background-color: #000;
	justify-content: space-between;
	align-items: center;
	padding: 1.28rem var(--padding);
}
.shop-header {
	background-color: #0000004d;
}
.main-navigation {
	width: auto;
}

#menu-primary li a,
#menu-produkty-naglowek li  a {
	color: #FFF;
	font-family: "Maven Pro";
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	gap: 0.31rem;
	align-items: center;
	transition: all 0.2s ease;
	text-wrap: nowrap;
}
#menu-primary li  a[aria-current="page"],
#menu-produkty-naglowek li  a[aria-current="page"] {
	font-weight: 700;
	gap: 0.625rem;
}
#menu-primary li  a[aria-current="page"]::before,
#menu-produkty-naglowek li  a[aria-current="page"]::before {
	content: "";
	width: 0.5rem;
	height: 0.125rem;
	background: #1991B9;
}
#menu-primary,
#menu-produkty-naglowek {
	display: flex;
	gap: 1.88rem;
}

#menu-primary li.menu-item-has-children >  a::after,
.products-menu ul li.menu-item-has-children > a::after,
#menu-produkty-naglowek li.menu-item-has-children >  a::after {
	content: "";
	width: 1.5rem;
	height: 0.75rem;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI0IDEyIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNNS43NSAzTDExLjc1IDlMMTcuNzUgMyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.2s ease;
}

#menu-primary .sub-menu,
#menu-produkty-naglowek .sub-menu {
	background-color: #000;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 0.5rem 0.5rem;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
	border-left:#1991B9 0.15rem solid;
}


#menu-primary .sub-menu a,
#menu-produkty-naglowek .sub-menu a {
	padding: 0.5rem;
}
#menu-primary .sub-menu .sub-menu,
#menu-produkty-naglowek .sub-menu .sub-menu {
	display: none;
	position: unset;
}

#menu-primary .sub-menu  li.menu-item-has-children.focus .sub-menu,
#menu-produkty-naglowek .sub-menu  li.menu-item-has-children.focus .sub-menu {
	display: flex !important;
}

#menu-primary li.menu-item-has-children.focus >  a::after,
#menu-primary > li.menu-item-has-children:hover >  a::after,
#menu-produkty-naglowek li.menu-item-has-children.focus >  a::after,
#menu-produkty-naglowek > li.menu-item-has-children:hover >  a::after {
	transform: rotate(180deg);
}
.main-navigation .menu-produkty-naglowek-container {
	display: none;
}
.main-navigation {
	display: flex;
	gap: 1.88rem;
	width: 100%;
	align-items: center;
}

a.store-link {
	color: #FFF;
	font-family: "Maven Pro";
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	gap: 0.31rem;
	align-items: center;
	transition: all 0.2s ease;
}

a.store-link:hover {
	color: #1991B9;
}

a.login-link {
	border-radius: 0.3125rem;
	background: #FFF;
	color: #000;
	font-family: "Maven Pro";
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	position: relative;
	display: flex;
	gap: 0.31rem;
	align-items: center;
	padding: 0.625rem 1.25rem;
	border: solid 1px white;
	transition: all 0.2s ease;
}
a.login-link::after {
	content: "";
	position: absolute;
	right: -8px;
	top: -8px;
	width: 80%;
	height: 80%;
	border: 1px solid white;
	border-radius: 5px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top right;
	transition: all 0.2s ease;
	clip-path: inset(0 0 10px 10px);
}
a.login-link:hover::after {
	right: -1px;
	top:-1px;
}
a.login-link:hover::after {
	content: "";
	position: absolute;
	right: -8px;
	top: -8px;
	width: 80%;
	height: 80%;
	border: 1px solid white;
	border-radius: 5px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top right;
	transition: all 0.2s ease;
	clip-path: inset(0 0 10px 10px);
}

#menu-primary a:hover {
	color: #1991B9;
}

.header-stripe {
	border-radius: 0.3125rem;
	background: rgba(255, 255, 255, 0.22);
	height: 0.0625rem;
	width: 100%;
	flex:1;
	margin: 0 calc(var(--padding) / 3) 0 var(--padding);
}
.custom-header-links {
	display: flex;
	gap: 1.88rem;
	align-items: center;
	width: 100%;
}
@media (width < 1400px) {
	.header-stripe {
		display: none;
	}
}

.custom-logo {
	transition: all 0.2s ease;
	width: 180px;
}

.custom-logo:hover {
	filter: brightness(0.8);
}

@media (width < 1400px) {
	:root {
		--padding: 4.125rem;
	}
}

@media (width < 1200px) {
	:root {
		--padding: 3.125rem;
	}
}

@media (width < 992px) {
	:root {
		--padding: 2.125rem;
	}
}

@media (width < 768px) {
	:root {
		--padding: 1.125rem;
	}
}

@media (width < 576px) {
	:root {
		--padding: 20px;
	}
}

@media (width < 1150px) {
	.main-navigation .menu-primary-container,
	.main-navigation .custom-header-links,
	.main-navigation .menu-produkty-naglowek-container {
		display: none;
	}
	.main-navigation .menu-toggle {
		display: block;

	}
	.main-navigation.toggled .menu-toggle .open {
		display: none;
	}
	.main-navigation.toggled .menu-toggle .close {
		display: block;
	}
	.main-navigation.toggled {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background-color: black;
		padding: 4rem var(--padding);
		flex-direction: column;
		overflow-x: auto;
		z-index: 50;
	}
	.main-navigation.toggled .menu-toggle {
		align-self: flex-end;
	}
	.main-navigation.toggled .menu-primary-container ul,
	.main-navigation.toggled .menu-produkty-naglowek-container ul{
		flex-direction: column;
	}
	.main-navigation.toggled .menu-primary-container,
	.main-navigation.toggled .custom-header-links,
	.main-navigation.toggled .menu-produkty-naglowek-container {
		display: flex;
		flex-direction: column;
		gap: 1.88rem;
		align-self: start;
	}
	#menu-primary .sub-menu,
	#menu-produkty-naglowek .sub-menu {
		display: none;
		position: unset;
	}
	
	#menu-primary li.menu-item-has-children.focus > .sub-menu,
	#menu-produkty-naglowek li.menu-item-has-children.focus > .sub-menu {
		display: flex !important;
	}
}

.weblance-footer {
	width: 100%;
	background-color: black;
}

.weblance-footer__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.7rem var(--padding);
	color: #FFF;
	font-family: "Montserrat";
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 96%; /* 0.96rem */
}

.weblance-footer__wrapper a {
	color: #FFF;
	text-decoration: none;
	transition: all 0.2s ease;
}

.weblance-footer__wrapper a:hover {
	color: #1991B9;
}

@media (width < 700px) {
	.weblance-footer__wrapper {
		flex-direction: column;
		gap: 0.5rem;
	}
}

.site-footer {
	background: #000C10;
}

.site-footer .site-info {
	color: #FFF;
	display: flex;
	padding: 2.5rem var(--padding);
	gap: 50px;
}
@media (width < 1850px) {
	.site-footer .site-info {
		gap: 3.125rem;
	}
}
.site-footer .logo-contact {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	justify-content: space-between;
	min-width: 280px;
}
.site-footer .site-info .contact p {
	margin:0;
	font-weight: 500;
	font-family: "Montserrat";
}

.site-footer .site-info .contact p:last-of-type {
	margin-bottom: 1.25rem;
}

.site-footer .contact-icons {
	display: flex;
	justify-content: space-between;
}

.site-footer .contact-icons a{
	border-radius: 0.3125rem;
	border: 1px solid #FFF;
	display: flex;
	width: 2.375rem;
	height: 2.375rem;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
}

.site-footer .contact-icons a:hover {
	border-color: #1991B9;
}
.site-footer .contact-icons a svg path{
	transition: all 0.2s ease;
}
.site-footer .contact-icons a:hover svg path {
	fill: #1991B9;
}

.site-footer .custom-logo {
	max-width: 100%;
}

.footer-item h3 {
	color: #FFF;
	font-family: "Montserrat";
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin:0; 
	padding-bottom: 0.625rem;
	border-bottom: solid 0.0625rem rgba(255, 255, 255, 0.44);
}

.site-footer .contact-and-links {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 3.125rem;
}

.footer-item__content {
	padding: 0.94rem 1.25rem;
}

.footer-item__content.grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-item__content .contact {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.footer-item__content .contact a {
	color: #FFF;
	font-family: "Maven Pro";
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	display: flex;
	gap: 0.625rem;
	align-items: center;
	transition: all 0.2s ease;
}

.footer-item__content .contact a:hover {
	color: #1991B9;
}

.site-footer .contacts {
	display: grid;
	grid-template-columns: repeat(3, calc((100% - 60px ) / 3));
	gap: 30px;
}

.site-footer .contacts .contacts-col {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.footer-item.links {
	flex:1;
}
.footer-item.links .menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.94rem;
}
.footer-item.links.in-row .menu {
	flex-direction: row;
	gap: 1.88rem;
	flex-wrap: wrap;
}
.footer-item.links .menu a {
	color: #FFF;
	font-family: "Maven Pro";
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	transition: all 0.2s ease;
}

.footer-item.links .menu a:hover {
	color: #1991B9;
}

@media (width < 1300px) {
	.site-footer .contacts {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-item.links {
		grid-column: span 2;
	}
	.footer-item.links .menu {
		flex-direction: row;
    	gap: 1.88rem;
		flex-wrap: wrap;
	}

}

@media (width < 1050px) {
	.site-footer .site-info {
		flex-direction: column;
		gap: 3.25rem;
	}
	.site-footer .custom-logo {
		max-width: 12.8rem;
	}
}

@media (width < 850px) {
	.site-footer .contacts {
		display: flex;
		flex-direction: column;
	}
}

@media (width < 520px) {
	.footer-item__content.grid {
		grid-template-columns: 1fr;
	}
}
.products-menu {
    backdrop-filter: blur(11.3px);
    position: relative;
    z-index: 5;
}
.products-menu ul {
	display: flex;
	margin:0;
	padding:0;
	list-style: none;
}
.products-menu ul li a {
	color: #FFF;
	font-family: "Maven Pro";
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 1.5rem;
	transition: all 0.2s ease;
	height: 70px;
}

.products-menu ul li a:hover {
	color: #1991B9;
}
.products-menu ul li.menu-item-has-children a {
	padding-right: 1.25rem;

}
.products-menu ul li {
	flex:1;
}
.products-menu ul.menu > li:not(:last-child) {
	border-right: solid 0.0625rem #000;
}
.products-menu ul li.menu-item-has-children {
	position: relative;
}
.products-menu ul li.menu-item-has-children > .sub-menu {
	display: none;
}
.products-menu ul li.menu-item-has-children.focus > .sub-menu {
	display: flex;
	flex-direction: column;
	background-color: #000;
	position: absolute;
	border-left: solid 0.15rem #1991B9;
	top: 100%;
	left: 0;
	width: 100%;
}
.products-menu ul li.menu-item-has-children.focus a::after {
	transform: rotate(180deg);
}
.products-menu ul li.menu-item-has-children.focus > .sub-menu a {
	padding: 0.75rem 1.5rem;
}
/* body{
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiMwMDAwMDAiIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDMyIDMyIiBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIj48cGF0aCBkPSJNNi4zMywxOC40NXY4LjU5YzAsLjQxLC4zNCwuNzUsLjc1LC43NWgxNS4xM2MuNDEsMCwuNzUtLjM0LC43NS0uNzV2LTguNmMxLjkxLS43NSwzLjI3LTIuNiwzLjI3LTQuNzcsMC0yLjgzLTIuMy01LjEzLTUuMTMtNS4xMy0uNTYsMC0xLjEzLC4xLTEuNjcsLjI4LTEuMi0xLjg3LTMuMjQtMy4wMS01LjQ5LTMuMDFzLTQuMDksMS4wMi01LjMxLDIuNzVjLTMuMDYtLjI3LTUuNTYsMi4xNC01LjU2LDUuMTEsMCwyLjE3LDEuMzYsNC4wMiwzLjI3LDQuNzdabTEuNSw3Ljg0di0xLjg3aDEzLjYzdjEuODdINy44M1ptMTMuNjMtNy40OHY0LjExSDcuODN2LTQuMTFoMTMuNjNaTTguMTksMTAuMDVjLjE4LDAsLjM2LC4wMiwuNTYsLjA1LDAsMCwuMDEsMCwuMDIsMCwxLjcyLC4zMywyLjk3LDEuODMsMi45NywzLjU3LDAsLjQxLC4zNCwuNzUsLjc1LC43NXMuNzUtLjM0LC43NS0uNzVjMC0yLjA1LTEuMjMtMy44NS0zLjA0LTQuNjcsLjk0LTEuMDcsMi4yOS0xLjcsMy43NC0xLjcsMS45MSwwLDMuNjQsMS4wNyw0LjUsMi43OSwuMDksLjE4LC4yNSwuMzEsLjQzLC4zOCwuMTksLjA2LC4zOSwuMDUsLjU3LS4wNCwuNTItLjI2LDEuMDktLjQsMS42NS0uNCwyLDAsMy42MywxLjYzLDMuNjMsMy42M3MtMS42MywzLjYzLTMuNjMsMy42M0g4LjE5Yy0yLDAtMy42My0xLjYzLTMuNjMtMy42M3MxLjYzLTMuNjMsMy42My0zLjYzWiIvPjwvc3ZnPg==");
	background-size: 32px;
} */

.products-menu-wrapper {
	padding: 0 var(--padding);
}


li.menu-item-has-children:has(.focus) .sub-menu {
	display: block;
}
.logo-and-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo-and-btn img {
	display: none;
}

.main-navigation.toggled .logo-and-btn img {
	display: block;
}

.slider-navigation__icons__wrapper {
    display: grid
;
    gap: 20px;
}

.hero-slider {
    margin-top: -70px;
	overflow: hidden;
	margin-left: calc(-1 * var(--padding));
	margin-right: calc(-1 * var(--padding));
}

.swiper-slide-wrapper {
    position: relative;
	display: flex;
	align-items: end;
	height: 100%;
	min-height: 70vh;
}

.swiper-slide-wrapper > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    object-fit: cover;
}

.home h1.entry-title {
	display: none;
}


.slider-navigation {
    position: absolute;
    right: 100px;
    top: 100px;
    bottom: 150px;
    z-index: 4;
    display: flex
;
    flex-direction: column;
    gap: 20px;
	align-items: center;
}

.slider-navigation .nav-line {
	width: 1px;
	height: 100%;
	flex: 1;
	background-color: white;
}

.hero-slider__wrapper__content {
	position: relative;
}

a.contact-icon {
    display: flex
;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 5px;
}


.slider-navigation__arrows-prev {
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--ground);
	border-radius: 5px;
	transition-duration: 0.2s;
	cursor: pointer;
}

.slider-navigation__arrows-next {
	cursor: pointer;
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: white;
	border-radius: 5px;
	transition-duration: 0.2s;
}


.slider-navigation__arrows-prev:hover, .slider-navigation__arrows-next:hover {
    background-color: #21759b;
}

.slider-navigation__arrows-prev:hover svg path, .slider-navigation__arrows-next:hover svg path {
	stroke: white;
}

.contact-icon:hover {
	background-color: white;
	transition-duration: 0.2s;
}
.contact-icon:hover svg path {
	fill: var(--ground);
}

.slider-navigation__arrows {
    display: grid
;
    gap: 20px;
}

.swiper-slide-wrapper__content-inner-title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
	max-width: min(800px, 100%);
    line-height: 102.39%;
    letter-spacing: 6px;
	margin-bottom: 30px;
    text-transform: uppercase;
}

.swiper-slide-wrapper__content-inner-title p {
	margin: 0;
}

.swiper-slide-wrapper__content-inner-desc {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	max-width: 600px;
	margin-bottom: 30px;
}

.swiper-slide-wrapper a.button {
    padding: 13px 50px;
    border: 1px solid white;
    display: flex
 !important;
background-color: transparent;
    width: fit-content;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    gap: 10px;
	align-items: center;
}
a.button img {
	height: 20px;
}
.swiper-slide-wrapper__content-inner-buttons {
    display: flex
;
    gap: 20px;
	row-gap: 10px;
    flex-wrap: wrap;
}



@media screen and (max-width: 1200px){
	.swiper-slide-wrapper__content-inner-title {
		font-size: 32px;
	}
}

.swiper-slide-wrapper__content {
    width: 100%;
	position: relative;
	z-index: 5;
	padding: 100px;
	padding-top: 150px;
	padding-bottom: 150px;
}


.arrow-line-wrapper {
    display: flex
;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    align-items: center;
}

@media screen and (max-width: 1400px){
	.slider-navigation {
		right: var(--padding);
		flex-direction: row;
	}
	
.arrow-line-wrapper {
    display: flex
;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    align-items: center;
}
	.slider-navigation .nav-line {
		width: 100%;
		height: 1px;
	}
	.swiper-slide-wrapper__content {
		padding-left: var(--padding);
	}
	.slider-navigation__icons__wrapper {
		flex-direction: row;
		display: flex;
	}
	.slider-navigation__arrows {
		display: flex;
		flex-direction: row;
	}
	.slider-navigation {
		height: fit-content;
		width: calc(100% - (var(--padding) * 2));
		left: var(--padding);
		right: var(--padding);
		top: calc(100% - 230px);
	}
	.swiper-slide-wrapper__content {
		padding-bottom: 250px;
	}
}


@media screen and (max-width: 500px){
	.slider-navigation {
		flex-direction: column;
		gap: 10px;
		justify-content: end;
		align-items: end;
	}
	.swiper-slide-wrapper__content-inner-title {
		font-size: 25px;
	}
}



.liczby-wrapper {
      padding: var(--padding);
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 20px;
    background: linear-gradient(135deg, #206a72, #2c5364, #1991b982);
    backdrop-filter: blur(62px);
    margin-top: -100px;
    z-index: 4;
    position: relative;
}

span.counter {
    font-size: 42px;
    font-weight: 900;
    color: white;
}
.liczba p {
	margin: 0;
	line-height: 120%;
	color: white;
	font-weight: 500;
}
.liczba span {
	line-height: 32px;
}
.liczba {
    gap: 5px;
    display: grid
;
    grid-template-columns: auto 1fr;
	align-items: center;
}

.liczby .row {
    display: grid
;
    grid-template-columns: 1fr 1fr;
}

.liczby-text {
	margin-top: 50px;
}

.liczby-text p {
	margin: 0;
}
.row.mt-4.liczby-text {
    display: grid
;
    gap: 50px;
    grid-template-columns: 1fr auto;
	align-items: end;
}


.row.mt-4.liczby-text .btn {
    padding: 15px 30px;
    background: rgba(0, 12, 16, 1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
}

.button-wrapper {
    display: flex
;
}

@media screen and (max-width: 800px){
	.row.mt-4.liczby-text {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media screen and (max-width: 800px){
	.liczby-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 500px){
	.liczby .row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.kafelki-wrapper {
    padding-top: 50px;
    padding-bottom: 100px;
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.grid-container {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

a.grid-item {
    padding: 20px;
    background: #000c10;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: -5px 5px 0 0 #1991b9;
	transition-duration: 0.2s;
}
a.grid-item:hover {
	box-shadow: -10px 10px 0 0 #1991b9;
}
a.grid-item * {
	color: white;
}
.click-icon {
    height: 42px;
    width: 42px;
    position: absolute;
    background: white;
    display: flex
;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 0;
    border-radius: 0 0 0 10px;
}

.content p {
	margin: 0;
}

.grid-container h3 {
	margin: 0;
	margin-bottom: 50px;
	padding-right: 25px;
}
.mini-header {
    color: white;
    font-size: var(--text-sm);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.mini-header::after {
	content: "";
	display: block;
	width: 100%;
	flex: 1;
	height: 1px;
	background-color: white;
}

.mini-header {
	display: flex;
	gap: 20px;
	align-items: center;
}
.header p {
	margin: 0;
}
.header {
	margin-top: 0;
	margin-bottom: 30px;
    color: white;
    font-size: var(--h5-size);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.header strong {
	color: #1991B9;
}
.text {
	text-align: justify;
}
.text p {
    margin: 0;
	margin-bottom: 50px;
}

.column-left {
	padding: 30px 0;
}

@media screen and (min-width: 1920px){
	.hero-slider__wrapper__content {
		border-radius: 0 0 30px 30px;
		overflow: hidden;
	}
}

.buttons .button {
    background: #000c10;
    border-radius: 10px;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 1600px){
	.kafelki-wrapper {
		grid-template-columns: calc(40% - 25px) calc(60% - 25px);
		gap: 50px;
	}
}
@media screen and (max-width: 1200px){
	.kafelki-wrapper {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}
@media screen and (max-width: 1200px){
	.kafelki-wrapper {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}
@media screen and (max-width: 650px){
	.grid-container {
		display: grid
	;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
}

@media screen and (max-width: 1200px){
	.header {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.text p {
		margin: 0;
		margin-bottom: 30px;
	}
}

.liczby-wrapper::after {
    content: "";
    border: 1px solid white;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -10px;
    left: 10px;
    border-radius: 20px;
    clip-path: inset(0 0 50px 50px);
}

	section.lista-produktow {
		background-color: transparent;
	}

	@media screen and (min-width: 1920px){
		section.lista-produktow {
			border-radius: 30px;
		}
	}

	.lista-produktow .mini-naglowek {
		color: var(--ground);
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		margin: 0;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.lista-produktow .mini-naglowek::after {
		content: "";
		display: block;
		width: 100%;
		flex: 1;
		height: 1px;
		background-color: var(--ground);
	}

	.naglowek {
		color: var(--ground);
	}

	.produkty-grid {
		display: grid
	;
		grid-template-columns: repeat(3, 1fr);
		gap: 50px;
	}

	p.tekst-koncowy {
		margin: 0;
	}

	.produkt-item img {
		aspect-ratio: 16 / 10;
		object-fit: cover;
		width: 100%;
		border-radius: 10px 10px 0 0 ;
	}
	.produkt-item {
		position: relative;
	}

	.produkt-item .click-icon {
		background-color: #000304;
	}
.produkt-item a {
	text-decoration: none;
}
	.produkt-item h3 {
		margin: 0;
		width: 100%;
		background: var(--ground);
		z-index: 3;
		color: white;
		padding: 20px 20px;
		font-size: 18px;
		font-weight: 500;
		border-radius: 0 0 10px 10px;
	}

	.produkty-text-wrapper {
		margin-top: 50px;
		display: flex
	;
		justify-content: space-between;
		gap: 20px;
		flex-wrap: wrap;
		align-items: center;
	}

	.text-wrapper {
		color: white;
	}

	p.tekst-koncowy {
		color: var(--ground);
		max-width: 500px;
		flex: 1;
	}

	.produkty-text-wrapper-line {
		width: 100%;
		height: 1px;
		background-color: var(--ground);
	}

	.produkty-text-wrapper a {
		flex: none;
	}


	@media screen and (max-width: 1600px){
		.produkty-grid {
			gap: 30px;
		}
		.produkt-item h3 {
			margin: 0;
			padding: 15px 10px;
		}
	}

	@media screen and (max-width: 1200px){
		.produkty-grid {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media screen and (max-width: 600px){
		.produkt-item h3 {
			font-size: 12px;
			padding: 10px 10px;
		}
		.produkt-item img {
			border-radius: 5px;
		}
	}

	@media screen and (max-width: 650px){
		.produkty-grid {
			display: grid;
			grid-template-columns: repeat(1, 1fr);
		}
	}
	.zalety {
			margin-left: calc(-1* var(--padding));
    margin-right: calc(-1* var(--padding));
	padding: 100px var(--padding);
	background-color: var(--ground);
	}

	.pomagamy-wrapper {
		padding: 50px 0;
	}
	.standard-wrapper {
		padding-top: 100px;
	}
	.standard-wrapper.full-slider {
		padding-top: 100px;
	}
	.zalety .row.align-items-center {
		display: grid
	;
		grid-template-columns: calc(40% - 50px) 60%;
		gap: 50px;
	}

	.zalety__list {
		display: grid
	;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.zalety .zalety_header_wrapper {
		display: grid
		;
			grid-template-columns: 40px 1fr;
			gap: 20px;
			align-items: center;
			margin-bottom: 20px;
	}
	.zalety__item {
		background-color: white;
		padding: 20px;
		border-radius: 10px;
	}

	h3.zalety__item-header {
		margin: 0;
		color: var(--ground);
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
	}

	.zalety-data {
		padding: 20px 0;
	}
	.zalety__image {
		height: 100%;
		display: flex
	;
	position: relative;
	}

	.zalety__image img {
		height: 100%;
		width: 100%;
		border-radius: 10px;
		object-fit: cover;
		position: relative;
	}

	.zalety__image::after {
		content: "";
		border: 1px solid white;
		position: absolute;
		width: 100%;
		height: 100%;
		top: -10px;
		right: 10px;
		border-radius: 20px;
		clip-path: inset(0 50px 50px 0);
	}
	.zalety__item-icon {
		display: flex
	;
	}
	.zalety__item-desc {
		color: var(--ground);
	}

	.zaleta-wrapper-map {
		display: flex
	;
		gap: 20px;
		align-items: center;
	}

	.zaleta-wrapper-map svg {
		flex: none;
	}
	.zalety-map-header {
		font-size: 18px;

		font-weight: 600;
		color: white;
	}
	.zalety-map-header strong {
		color: #1991B9;
	}

	@media screen and (max-width: 1100px){
		.zalety .row.align-items-center {
			display: flex;
			flex-direction: column-reverse;
			gap: 50px;
		}
	}

	@media screen and (max-width: 650px){
		.zalety__list {
			display: grid
		;
			grid-template-columns: repeat(1, 1fr);
			gap: 20px;
		}
		.zaleta-wrapper-map svg {
			width: 120px;
		}
	}

	.grid-container-pomagamy {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 20px;
	}
	.grid-container-pomagamy .grid-item img{
		height: 50px;
		width: 50px;
	}
	.grid-container-pomagamy .grid-item {
		padding: 30px;
		background: #002231;
		border-radius: 10px;
	}
	.grid-item h3 {
		margin: 0;
		color: white;
		font-size: 18px;
		font-style: normal;
		font-weight: 600;
		margin-bottom: 20px;
		margin-top: 20px;
		line-height: normal;
	}
	.grid-item .content {
		color: white;
		text-align: justify;
	}

	@media screen and (max-width: 1200px){
		.grid-container-pomagamy {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 20px;
		}
	}
	@media screen and (max-width: 800px){
		.grid-container-pomagamy {
			display: grid;
			grid-template-columns: 1fr;
			gap: 20px;
		}
	}
	.pomagamy-wrapper a.button {
		background: #000c10;
		margin-top: 30px;
		padding: 15px 30px;
		display: block;
		width: max-content;
		border-radius: 10px;
		color: white;
		text-decoration: none;
	}

	.partnerzy-wrapper {
		display: flex
	;
		flex-wrap: wrap;
		padding: 30px 0;
		max-width: 1600px;
		margin: auto;
		gap: 50px;
		row-gap: 20px;
		justify-content: center;
	}
	.partnerzy-wrapper .partner-logo {
		width: auto;
		gap: 30px;
		justify-content: center;
		height: fit-content !important;
		text-emphasis: center;
		display: flex;
	}

	@media screen and (max-width: 600px){
		.partnerzy-wrapper .partner-logo {
			width: calc(50% - 25px);
		}	
	}

	.partnerzy-wrapper img {
		height: 100px;
		width: auto;
	}

	.grid-container-seo {
		display: grid
	;
		gap: 50px;
		grid-template-columns: 1fr 1fr;
		row-gap: 20px;
	}

	@media screen and (max-width: 1000px){
		.grid-container-seo {
			display: grid
		;
			gap: 50px;
			grid-template-columns: 1fr;
			row-gap: 20px;
		}
	}

	.grid-container-seo * {
		color: #000304;
	}

	

	a.login-link img {
		height: 24px;
	}

	a.login-link {
		text-decoration: none;
		gap: 10px;
	}

	a.login-link.button-outline {
		background: transparent;
		color: white;
		gap: 10px;
		padding: 10px 30px;
	}

	a.login-link.button-outline:not(.heart-icon) svg path {
		fill: white;
	}

	.cart-count {
		position: absolute;
		bottom: -10px;
		left: -10px;
		height: 25px;
		width: auto;
		
		padding: 0 5px;
		display: flex
	;
		justify-content: center;
		align-items: center;
		background: #1991B9;
		font-weight: 400 !important;
		border-radius: 3px;
		font-size: 12px;
		display: flex;
		gap: 3px;
	}

	a.login-link.button-outline.heart-icon {
		height: 48px;
		width: 48px;
		justify-content: center;
		padding: 0;
		align-items: center;
	}
	
	.header-wrapper.container.shop-header {
		display: none;
	}

	/* .woocommerce header.products-menu,
	.woocommerce-page header.products-menu,
	.search header.products-menu {
		display: none;
	} */


	.woocommerce .header-wrapper.container.shop-header,
	.woocommerce-page .header-wrapper.container.shop-header,
	.search .header-wrapper.container.shop-header {
		display: flex;
	}

	.search-wrapper {
		display: flex
	;
		align-items: center;
	}

	.search-wrapper form {
		display: flex;
		flex-direction: row-reverse;
		width: 100%;
		align-items: center;
		justify-content: start;
	}

	.search-wrapper {
		height: 46px;
	}

	.search-wrapper form {
		height: 100%;
		padding: 5px 10px;
		display: flex
	;
		align-items: center;
		gap: 10px;
		border-radius: 5px;
		border: 1px solid white;
	}
	.search-wrapper form button {
		padding: 0;
		border: none;
		background-color: transparent;
		display: flex;
		height: fit-content;
	}
	.search-wrapper input {
		background-color: transparent;
		color: white !important;
		border: none;
		outline: none;
	}

	button.menu-toggle > div {
		height: 3px;
		width: 40px;
		border-radius: 2px;
		background: white;
	}

	button.menu-toggle {
		border-radius: 0;
		padding: 0;
		display: flex !important
	;
		flex-direction: column;
		gap: 10px;
		background: transparent;
		border: none;
		outline: none;
		align-items: end;
	}
	.toggled button.menu-toggle > div {
		transition-duration: 0.2s;
	}
	.toggled button.menu-toggle > div:nth-child(1) {
		height: 3px;
		width: 40px;
		border-radius: 2px;
		background: white;
	}
	.toggled button.menu-toggle > div:nth-child(2) {
		height: 3px;
		width: 30px;
		border-radius: 2px;
		background: white;
	}
	.toggled button.menu-toggle > div:nth-child(3) {
		height: 3px;
		width: 20px;
		border-radius: 2px;
		background: white;
	}

	@media (width < 950px) {
		.products-menu, .header-wrapper.container.shop-header {
			display: none !important;
		}
	}

	.shop-slider .swiper-slide-wrapper__content {
		width: 100%;
		position: relative;
		z-index: 5;
		padding: var(--padding);
		padding-top: 190px;
		padding-bottom: 100px;
	}

	@media screen and (max-width: 1400px) {
		.shop-slider .slider-navigation {
			position: relative;
			width: 100%;
			padding: var(--padding);
			margin-top: -100px;
			z-index: 3;
			top: unset;
			left: unset;
			bottom: unset;
			right: unset;
		}
	}

	.shop-slider .swiper-slide-wrapper {
		min-height: fit-content;
	}

	.woocommerce-shop header.entry-header {
		display: none;
	}
	.hero-slider.shop-slider {
		margin-top: 0;
	}
	@media screen and (min-width: 1150px){
		button.menu-toggle {
			display: none !important;
		}
	}
	@media screen and (max-width: 1000px){
		.custom-logo {
			transition: all 0.2s ease;
			width: 120px;
		}
		.main-navigation:not(.toggled){
			gap: 0;
		}
		.wrapper-shop-buttons {
			grid-row: 2;
		}
	}
	a.custom-logo-link {
		display: flex
	;
	}

	@media screen and (min-width: 1150px){
		.mobile-menu-shop-buttons {
			display: none;
		}
	}

	.woocommerce ul.products li.product .onsale {
		z-index: 1;
	}
	nav#site-navigation.toggled {
		display: grid
	;
	}

	.shop-main-buttons {
		display: flex
	;
		gap: 20px;
	}

	.toggled .shop-main-buttons {
		width: 100%;
		justify-content: space-between;
	}

	@media screen and (max-width: 500px){
		.toggled .shop-main-buttons {
			flex-direction: column-reverse;
		}
		.toggled .shop-main-buttons > * {
			justify-content: center;
		}
	}

	.toggled .mobile-menu-shop-buttons {
		display: flex;
		width: 100%;
		gap: 20px;
		flex-direction: column;
	}

	.heart-cart {
		display: grid
	;
		gap: 20px;
		grid-template-columns: auto 46px ;
	}

	.toggled .search-wrapper input {
		width: 100%;
	}

	.toggled .search-wrapper form {
		width: 100%;
	}

	.toggled a.store-link {
		border: 1px solid white;
		border-radius: 5px;
		padding: 10px 10px;
	}

	.grid-container-categories {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 20px;
		row-gap: 10px;
	}
	.grid-container-categories .category-item {
		padding: 15px 30px;
		background: #000c10;
		color: white;
		border-radius: 10px;
		position: relative;
		text-align: center;
		font-weight: 500;
	}
	.category-count {
		position: absolute;
		bottom: -5px;
		right: -10px;
		background-color: #1991B9;
		padding: 2px 10px;
		border-radius: 3px;
	}

	.wybrane-produkty-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 20px;
		row-gap: 10px;
	}

	@media screen and (max-width: 615px){
		.wybrane-produkty-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
			gap: 20px;
			row-gap: 10px;
		}
	}
	@media screen and (max-width: 350px){
		.wybrane-produkty-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
			gap: 20px;
			row-gap: 10px;
		}
	}

	.custom-product-item {
		list-style-type: none;
		position: relative;
	}

	.custom-product-item .product-image {
		aspect-ratio: 1/1;
		border-radius: 10px;
		border: 1px solid #21759b;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.custom-product-item .heart-icon {
		position: absolute;
		right: 10px;
		top: 10px;
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		gap: 10px;
z-index: 3;
		cursor: pointer;
	}
	.custom-product-item .heart-icon.delete svg path{
		fill: #21759b;
		stroke: #21759b;
	}
	.custom-product-item .heart-icon .heart_info {
		opacity: 0;
	}
	.custom-product-item .heart-icon:hover .heart_info {
		display: block;
		opacity: 1;
		transition-duration: 0.2s;
	}

	.product-details {
		padding: 15px;
		background: rgba(230, 230, 230, 0.09);
		border-radius: 10px;
		margin-top: 10px;
	}
	.partner-price {
		position: absolute;
		bottom: 10px;
		right: 10px;
		z-index: 3;
		font-weight: 500;
		text-align: right;
		display: flex;
		flex-direction: row;
		align-items: end;
	}
	.product-image {
		position: relative;
	}
	.partner-price-value {
		display: block;
		width: fit-content;
		font-size: 14px;
		padding: 5px 10px;
		background: #1991b9;
		color: white;
		border-radius: 0 5px 5px 0;
		border: 1px solid #1991b9;
	}

	h2.product-title {
		margin-bottom: 10px;
	}
		h2.product-title, h2.product-title a {
			margin: 0;
			color: #000;
			font-size: 18px;
			font-style: normal;
			font-weight: 500;
			line-height: normal;
			text-decoration: none;
			display: -webkit-box;
			width: 100%;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
		}

		.product-pricing p {
			margin: 0;
		}
		.product-pricing {
		}
		.wybrane-produkty-grid {
			margin-top: 50px;
		}

		.partner-price-label {
			background: white;
			padding: 5px;
			font-size: 14px;
			border-radius: 5px 0 0 5px;
			border: 1px solid #1991b9;
		}

		.full-slider .hero-slider__wrapper__content {
			border-radius: 30px;
			overflow: hidden;
		}

		.hero-slider.full-slider {
			margin-top: 0;
			overflow: hidden;
			margin-left: 0;
			margin-right: 0;
		}
		@media screen and (min-width: 1001px){
			.partner-price-mobile {
				display: none;
			}
		}
		@media screen and (max-width: 1000px){
			.heart-icon .heart_info {
				display: none;
				font-size: 11px;
			}
			.heart-icon {
				gap: 5px
			}
			.heart-icon svg {
				flex: none;
			}
			.custom-product-item .product-image {
				padding: 10px;
			}
			.product-details {
				padding: 0;
				background:transparent;
				border-radius: 0;
				margin-top: 10px;
			}
			h2.product-title, h2.product-title a {
				font-size: 14px;
			}
			.product-pricing p {
				font-size: 12px;
			}
			.partner-price-value {
				font-size: 12px;
			}
			.product-image .partner-price {
				display: none;
			}
			.partner-price-mobile {
				margin-top: 10px;
				overflow: hidden;
				display: flex
		;
		flex-direction: column;
				background: #1991b9;
				border-radius: 5px;
			}
			.partner-price-label {
				color: white;
				background-color: transparent;
				padding: 5px 10px;
				padding-bottom: 0;
				font-size: 12px;
				border-radius: 0;
				border: 0;
			}
			.partner-price-value {
				border-radius: 0;
			}
		}

		.button-conf {
			display: flex
		;
			gap: 20px;
			padding: 15px;
			background: #000c10;
			color: white;
			border-radius: 5px;
			margin-top: 30px;
		}

		.grid-container-zalety {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 20px;
			row-gap: 10px;
			text-align: center;
		}

		.grid-container-zalety > div {
			border: 1px solid black;
			border-radius: 5px;
			padding: 15px;
		}

		.configurator-info-wrapper {
			padding: 30px;
			background: #F8F8F8;
			border-radius: 20px;
		}

		@media screen and (max-width: 1000px){
			
		.grid-container-zalety {
			grid-template-columns: repeat(1, 1fr);
		}
		}

		@media screen and (max-width: 600px){
			.standard-wrapper.configurator-info {
				margin: 0 calc(-1* var(--padding));
			}
			.standard-wrapper.configurator-info > div {
				border-radius: 0;
			}
		}

		.woocommerce-shop .woocommerce.columns-4 {
			display: none;
		}
		.header-pomagamy-wrapper.grided {
			display: grid;
			grid-template-columns: 200px 1fr;
			gap: 20px;
		}

		@media screen and (max-width: 650px){
			.header-pomagamy-wrapper.grided {
				display: grid;
				grid-template-columns: 1fr;
				gap: 20px;
			}
		}



		.grid-item-seo h1,
		.grid-item-seo h2,
		.grid-item-seo h3,
		.grid-item-seo h4,
		.grid-item-seo h5,
		.grid-item-seo h6 {
			margin-bottom: 20px;
			color: #000C10;
			font-size: 18px;
			font-style: normal;
			font-weight: 900;
			line-height: normal;
			text-transform: uppercase;
		}
		header.entry-header h1 {
			color: white;
			font-size: 25px;
		}
		header.entry-header {
			padding: 50px var(--padding);
			background: #000000;
			max-width: 1920px;
			margin: 0 auto 50px;
			border-radius: 0 0 30px 30px;
			border-top: 1px solid #21759b;
		}

		@media screen and (max-width: 800px){
			header.entry-header {
				padding: 30px var(--padding);
				border-radius: 0 0 0px 0px;
			}
		}
		.breadcrumbs-inner *, .breadcrumbs-inner {
			color: #ffffffc7 !important;
			text-decoration: none;
		}
		.home header.entry-header {
			display: none;
		}

		.filtry {
			padding: 20px;
			border-radius: 20px;
			background: #F8F8F8;
			margin-bottom: 20px;
		}

		.filters-header {
			display: flex
		;
			justify-content: space-between;
			gap: 30px;
			align-items: center;
			flex-wrap: wrap;
		}

		.filter-submit-button {
			background-color: #21759b;
			padding: 10px 30px;
			line-height: normal;
			height: 40px;
			display: flex;
			border: none;
			border-radius: 5px;
			color: white;
			align-items: center;
			flex: none;
			cursor: pointer;
		}
		.filter-submit-button:hover {
			filter: brightness(1.2);
		}
		.filters-header h2 {
			margin: 0;
			font-size: var(--h6-size);
			color: black;
			font-weight: 400;
			flex: none;
		}
		.line-header {
			flex: 1;
			height: 1px;
			background: #cdcdcd;
		}

		.filters-wrapper {
			display: grid			;
			grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
			gap: 20px;
			row-gap: 10px;
		}

		.filter-label {
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 10px;
			padding: 5px 10px;
			border-radius: 7px;
			border: 1px solid black;
			position: relative;
			background-color: #F8F8F8;
			z-index: 5;
		}

		.field-values-select {
			display: none;
			padding: 10px;
			border: 1px solid black;
			border-top: 0;
			position: relative;
			z-index: 6;
			background-color: #F8F8F8;
			position: absolute;
			width: 100%;
			border-radius: 0 0 7px 7px;
		}
		.single-filter-item {
			position: relative;
		}
		.filter-label:hover {
			cursor: pointer;
		}
		
.filters-wrapper {
    margin-top: 20px;
}
.filter-label.opened {
	border-radius: 7px 7px 0 0;
}
.filter-label > div {
    display: flex
;
    gap: 5px;
}

.count-filters {
    background: #21759b;
    color: white;
    width: 25px;
	display: none;
    text-align: center;
    border-radius: 5px;
}

.product-image {
	padding: 20px;
}
.product-image img {
	height: 100% !important;
	object-fit: contain;
}

/* ul.products.columns-4 {
    display: grid
;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    row-gap: 10px;
} */

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	float: unset;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    margin-left: 0;
}

.products-archive-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    row-gap: 10px;
}

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
    content: none;
    display: table;
}

.categories-label {
    background: #000C10;
    display: flex;
    padding: 15px 20px;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}
.categories-list {
    padding: 10px 20px;
}

.categories-list {
    border: 1px solid #00000014;
}
.parent-category-wrapper {
    display: grid
;
    grid-template-columns: 1fr 20px;
}

.categories-list > .category-item .category-item {
    display: none;
}

.parent-category-wrapper a {
    text-decoration: none;
    padding: 5px 0;
}
.chevron-wrapper {
    cursor: pointer;
	padding-top: 5px;
}
a.link-to-product {
    display: flex
;
    gap: 5px;
    align-items: center;
}


.woocommerce ul.products {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

ul.products.columns-4 .normal-product {
    width: calc((100% - 60px) / 4) !important;
	display: inline-block !important;
}

@media screen and (max-width: 1400px){
	ul.products.columns-4 .normal-product {
		width: calc((100% - 40px) / 3) !important;
	}
	.products-archive-wrapper {
		gap: 20px;
	}
}

@media screen and (max-width: 960px){
	ul.products.columns-4 .normal-product {
		width: calc((100% - 20px) / 2) !important;
	}
}
.open-categories {
    width: fit-content;
    padding: 10px 20px;
    background: transparent;
    color: #000c10;
    font-weight: 600;
	border: 1px solid #000c10;
	border-radius: 5px;
}

.open-filters {
    display: flex
;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
	border: 1px solid #000c10;
	border-radius: 5px;
}
.archive-wrapper-header {
	display: none;
}
@media screen and (max-width: 1000px){
	.archive-wrapper-header {
		display: flex;
		gap: 20px;
		justify-content: space-between;
		margin-bottom: 20px;
	}
	.products-archive-wrapper {
		display: block;
		grid-template-columns: 1fr;
		gap: 20px;
		row-gap: 10px;
	}
	.filtry:not(.filtry-perma) {
		display: none;
	}
	div:not(.blog-cats) > .products-archive-categories {
		display: none;
	}
	.custom-product-item .product-image {
		border-radius: 5px;
	}
	.categories-label {
		background: #21759b;
		display: flex
	;
		padding: 15px 20px;
		align-items: center;
		gap: 10px;
		color: white;
		font-weight: 600;
	}
}


.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
	margin: 0;
}
.open-filters svg  path {
	stroke: black;
	width: 1px;
}
@media screen and (max-width: 600px){
	.open-filters, .open-categories {
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 5px 10px;
		font-weight: 400;
	}
	.filtry {
		padding: 20px;
		border-radius: 10px;
		background: #F8F8F8;
		margin-bottom: 25px;
	}
	.products-archive-categories.opened {
		background: #F8F8F8;
		margin-bottom: 20px;
	}
	header.entry-header h1 {
		font-size: 20px;
	}
	.breadcrumbs * {
		font-size: 12px;
	}
}

.opening.active {
    background: #21759b;
    border-color: #21759b;
    color: white;
    font-weight: 500;
}

.opening.active svg path {
    stroke: white;
}

p.price {
    color: black !important;
}

p.price > * {
    display: inline-block !important;
}


span.woocommerce-Price-amount.amount {
	font-weight: 600;
}

span.count-filters-abso {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 5px;
    background: #21759b;
    border: 1px solid white;
    height: 25px;
    width: 25px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
	color: white;
}

.open-filters {
	position: relative;
}


.advanced-product .advanced-product-wrapper {
    display: grid
;
    grid-template-columns: calc(30% - 20px) calc(35% - 20px) calc(35% - 20px);
    gap: 30px;
	align-items: start;
}

.li-product-content h2.product-title, .li-product-content h2.product-title * {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.li-product-content h2.product-title {
	margin-bottom: 10px;
}

.li-product-content-cart {
    padding: 20px;
    background: rgba(25, 145, 185, 0.06);
    border-radius: 5px;
}

table.tech-params-table {
    margin-bottom: 10px;
	border-collapse: collapse;
}

table.tech-params-table tr td {
	padding: 5px;
	border-bottom: 1px solid #1991B9;
	font-size: 14px;
	letter-spacing: 0.7px;
}
table.tech-params-table tr td:first-child {
	border-right: 1px solid #1991B9;
}

.tech-params-header {
    font-size: 14px;
	letter-spacing: 0.7px;
}
.li-product-content-text {
    padding-bottom: 20px;
}

a.link-to-product svg {
    transform: rotate(-90deg);
}
strong.price {
    margin: 0 !important;
}

.price-row {
    display: flex
;
    gap: 5px;
    align-items: end;
	justify-content: end;
	flex-wrap: wrap;
}

.li-product-content-cart span.woocommerce-Price-amount.amount {
	font-size: 18px;
	color: black;
}
.li-product-content-cart del.old-price bdi {
	font-size: 15px !important;
	font-weight: 400;
}

.price-row-wrapper {
    text-align: end;
}
.buttons-wrapper > * {
	height: 25px;
	padding: 0;
	width: 25px;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid black;
	background-color: transparent;
	cursor: pointer;
}
.buttons-wrapper > *:hover {
	border-color: #1991B9;
	color: #1991B9;
}
.buttons-wrapper {
    display: grid;
	gap: 5px;
}

.quantity-wrapper input {
	height: 55px;
	background-color: transparent;
	border: 1px solid black;
	border-radius: 5px;
	width: 100%;
	text-align: center;
}
.quantity-wrapper input::-webkit-outer-spin-button,
.quantity-wrapper input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.quantity-wrapper input[type=number] {
	-moz-appearance: textfield;
}

.quantity-wrapper {
    display: grid
;
    grid-template-columns: 55px 30px;
	gap: 5px;
}
    

.add-to-cart-form {
    display: flex
;
    gap: 10px;
}

.add-to-cart-form a.button.add_to_cart_button.ajax_add_to_cart, a.button.noallow {
	width: 100%;
	height: 55px;
	background-color: #111;
	margin: 0 !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	color: white;
	border-radius: 5px;
}

a.button.add_to_cart_button.ajax_add_to_cart.added {
	background-color: #1991B9;
	color: white;
}

.add-to-cart-form {
    display: grid
;
    grid-template-columns: 85px 1fr;
    gap: 10px;
}

a.added_to_cart.wc-forward {
    padding: 0;
    margin: 0;
    grid-column: span 2;
	text-align: end;
}

.add-to-cart-form {
	margin-top: 20px;
	margin-bottom: 20px;
}

.partner-price-adv span.woocommerce-Price-amount.amount {
    color: #21759b !important;
}

.advanced-product .heart-icon {
	position: unset !important;
}

.product-image a {
    height: 100%;
}

@media screen and (max-width: 1650px){

	.li-product-content-cart {
		grid-column: span 2;
	}
	.price-row-wrapper {
		display: flex
	;
		gap: 10px;
		justify-content: end;
		flex-wrap: wrap;
	}
	.partner-price-adv {
		padding-right: 10px;
		border-right: 1px solid #21759b;
	}
}

@media screen and (max-width: 1300px){
	.advanced-product .advanced-product-wrapper {
		display: grid;
		grid-template-columns: calc((100% - 30px) * 0.5) calc((100% - 30px) * 0.5);
		gap: 30px;
		align-items: start;
	}
}

@media only screen and (max-width: 768px) {
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100%;
        float: unset;
        clear: unset;
        margin: 0;
    }
	.advanced-product .advanced-product-wrapper {
		display: grid;
		grid-template-columns: calc((100% - 30px) * 0.5) calc((100% - 30px) * 0.5);
		gap: 30px;
		align-items: start;
	}
	.li-product-content-cart {
		grid-column: span 2;
	}
	
}

@media screen and (max-width: 550px){
	.advanced-product .advanced-product-wrapper {
		display: grid;
		grid-template-columns: 100% !important;
		gap: 10px;
		align-items: end;
	}
	.li-product-content-cart {
		grid-column: span 1;
	}
}

span.dot {
    display: block;
    height: 25px;
    width: 25px;
    border: 2px solid #21759b;
    border-radius: 100%;
}
.availability-dots {
    display: flex
;
    gap: 5px;
}
span.dot.allow {
    background: #47e769;
}
ul.cart-info-icons > li {
    display: flex
;
    justify-content: space-between;
	align-items: center;
}
.cart-info-wrapper {
    display: flex
;
    gap: 5px;
	align-items: center;
}

.dot.empty {
	border: 2px solid red;
}

span.dot.medium:first-child, span.dot.medium:nth-child(2) {
    background: #ffc14e;
}

span.dot.low:first-child {
	background-color: red;
}

.products-archive-categories {
    height: fit-content;
    position: sticky;
    top: 40px;
}

span.dot.high {
    background: #47e769;
}

a.button.noallow {
	background-color: transparent;
	border: 1px solid #111;
	color: #111;
}

.payments-info-button {
	cursor: pointer;
}

ul.cart-info-icons {
	gap: 10px;
	display: flex;
	flex-direction: column;
}
span.icon.clock {
	display: flex;
}
li.benefits-info-button {
    padding: 10px;
    background: #449ac1;
    color: white;
    border-radius: 6px;
	list-style-type: none;
	margin-top: 10px;
}
li.benefits-info-button > div {
    display: flex
;
}
#benefits-drawer li.benefits-info-button {
	margin: 0 16px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.single-product header.entry-header {
    display: none;
}
ul.cart-info-icons {
    margin: 0;
    padding: 0;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    float: unset;
    width: 100%;
}

.advanced-product-wrapper {
    display: grid
;
    grid-template-columns: calc(30% - 20px) calc(35% - 20px) calc(35% - 20px);
    gap: 30px;
    align-items: start;
}

.product-image {
    border-radius: 10px;
    border: 1px solid #449ac1;
	aspect-ratio: 1/1;
}

h1.product-title {
    color: #000C10;
    font-family: "Maven Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 2.5px;
    text-transform: uppercase;
	margin-top: 20px;
}

h1.product-title a {
	text-decoration: none;
}

.single-product-wrapper {
    margin: 30px 0;
}

.single-product-wrapper .breadcrumbs-inner *, .single-product-wrapper .breadcrumbs-inner {
	color: #111 !important;
}

.woocommerce-notices-wrapper {
    margin-top: 20px;
}

.product-type-variable .tech-params {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgb(168, 168, 168);
}

.advanced-product-wrapper {
	align-items: start;
}

.single-product table.variations {
}

.single-product table.variations tr {
    display: grid
;
    width: 100%;
    margin-bottom: 10px;
}

table.variations .label {
    color: #000C10;
    font-family: "Maven Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.4px;
}

table.variations .value select {
    padding: 7px 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid black;
    margin-top: 3px;
}


.product-type-variable .tech-params-header {
    font-size: 16px;
    letter-spacing: 0.7px;
    FONT-WEIGHT: 500;
}
/* 
.single-product .add-to-cart-form {
	grid-template-columns: 1fr;
} */

.single_variation_wrap {
	display: none !important;
}

.product-gallery-swiper .swiper-slide img {
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #21759b;
	width: fit-content;
}

.product-gallery-swiper .swiper-slide img{
	height: 300px;
	width: 300px;
	object-fit: contain;
	aspect-ratio: 1/1;
}

.breadcrumbs-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	row-gap: 5px;
}
.breadcrumbs-inner::after {
    content: "";
    display: block;
    width: 100%;
    background: black;
    height: 1px;
    flex: 1;
}

.product-adv-gallery {
	grid-column: span 3;
}

@media screen and (max-width: 1650px){
	.product-type-variable .tech-params {
		padding: 0;
		margin: 0;
		border: none;
	}
	.product-adv-gallery {
		grid-column: span 2;
		grid-row: 2;
	}
}
.product-gallery-swiper .swiper-slide {
	width: fit-content;
}
@media screen and (max-width: 1650px){
	.product-type-variable .tech-params {
		padding: 0;
		margin: 0;
		border: none;
	}
	.product-gallery-swiper .swiper-slide img {
		height: 220px;
		width: 220px;
		object-fit: contain;
		aspect-ratio: 1 / 1;
	}
}
@media screen and (max-width: 1150px){
	.product-gallery-swiper .swiper-slide img {
		height: 150px;
		width: 150px;
		object-fit: contain;
		aspect-ratio: 1 / 1;
	}
}

@media screen and (max-width: 800px){
	.product-gallery-swiper .swiper-slide img {
		height: 100px;
		width: 100px;
		object-fit: contain;
		aspect-ratio: 1 / 1;
	}
	.product-adv-gallery {
		grid-column: span 1;
		grid-row: 2;
	}
	.advanced-product-wrapper {
        display: grid
;
        grid-template-columns: 100% !important;
        gap: 20px;
        align-items: start;
    }
	.li-product-content-cart {
		grid-column: span 1;
	}
	.li-product-content-text {
		padding-bottom: 0px;
	}
}



.swiper-button-next::after, .swiper-button-prev::after {
	color: black;
	font-size: 12px;
	width: 30px;
	height: 30px;
}

.product-tech-info {
    display: flex
;
    gap: 20px;
	align-items: center;
	margin-bottom: 20px;
	margin-top: 50px;
}

.product-tech-info::after {
	content: "";
	display: block;
	width: 100%;
	flex: 1;
	height: 1px;
	background-color: black;
}

.product-tech-info-title {
    color: #000C10;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.product-desc h1 {
    font-size: 22px;
}

.product-desc h2 {
    font-size: 20px;
}

.product-desc h3 {
    font-size: 18px;
}

.product-desc h4 {
    font-size: 16px;
}

.product-desc h5 {
    font-size: 14px;
}

.product-desc h6 {
    font-size: 12px;
}


.products-tech-wrapper {
    display: grid
;
    grid-template-columns: calc(35% - 15px) calc(65% - 25px);
    gap: 50px;
}


.woocommerce div.product form.cart {
	margin: 0;
}

.woocommerce div.product form.cart .variations {
    margin-bottom: 0;
    border: 0;
    width: 100%;
}

th.label {
    text-align: left;
    font-size: 16px !important;
}
section.related.products > h2 {
    display: none;
}
nav.navigation.post-navigation {
    display: none;
}
div#comments {
	display: none;
}
.products-rellated {
    margin-top: 50px;
}
@media screen and (max-width: 1400px){
	.products-tech-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.product-desc ul {
	margin: 0;
}

.woocommerce-cart-wrapper {
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: unset;
    width: 100%;
}

.cart_totals h2, .cart-header-text, .related-products > h2, .woocommerce-billing-fields h3, h3#order_review_heading, h2.woocommerce-order-details__title, h2.woocommerce-column__title, header.woocommerce-Address-title.title h2, div.wpforms-container-full .wpforms-form .wpforms-field-divider h3, .pliki-do-pobrania h2, .single-post .entry-content h2, .single-post .entry-content h3, div#customer_login h2 {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	margin: 0;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

h3#ship-to-different-address {
	color: #000;
    font-size: 18px;
	font-weight: 400;
}

.cart_totals h2::after, .cart-header-text::after, .related-products > h2::after, .woocommerce-billing-fields h3::after, h3#order_review_heading::after, h2.woocommerce-order-details__title::after, h2.woocommerce-column__title::after, header.woocommerce-Address-title.title h2::after, div.wpforms-container-full .wpforms-form .wpforms-field-divider h3::after, .pliki-do-pobrania h2::after, .single-post .entry-content h2::after, .single-post .entry-content h3::after, div#customer_login h2::after {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	flex: 1;
	background-color: #1991b9;
}

.woocommerce-cart-form__cart-item.cart_item {
    display: grid
;
    grid-template-columns: 200px calc(100% - 230px);
    gap: 30px;
	position: relative;
}

.woocommerce-cart-form__cart-item.cart_item .product-thumbnail img {
	object-fit: contain;
	height: 100%;
	width: 100%;
	aspect-ratio: 1/1;
}

.woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
	aspect-ratio: 1/1;
}

.product-thumbnail {
    border: 1px solid #1991b9;
    border-radius: 10px;
    overflow: hidden;
}
.product-name a {
    color: #000;
    font-family: "Maven Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.woocommerce a.remove {
    display: block;
    font-size: 25px;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: #1991B9 !important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    display: flex
;
    justify-content: center;
    align-items: center;
    border: 1px solid #1991B9;
    padding-bottom: 5px;
}

.product-remove {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
}

.cart-item-body {
	padding-right: 45px;
}
.cart-body {
    display: grid
;
    gap: 20px;
	grid-template-columns: 100%;
}
.variation-item {
    display: grid
;
}
span.variation-label {
    font-size: 14px;
	line-height: 14px;
	opacity: 0.6;
}

.product-variations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 30px;
    margin-top: 20px;
	row-gap: 5px;
}

.coupon {
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.cart-item-prices {
    display: flex
;
    gap: 10px;
	align-items: start;
	margin-top: 10px;
	flex-wrap: wrap;
	flex-direction: column;
	row-gap: 5px;
}

.cart-item-prices input {
    border: 1px solid black;
}

.cart-item-prices .product-price, .cart-item-prices .product-subtotal {
	color: #000;
font-family: "Maven Pro";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
align-items: end;
}

.cart-item-prices * {
	font-weight: 400;
}

.coupon input {
	border: 1px solid black;
	border-radius:5px 0 0 5px;
	padding: 10px;
}
body .coupon button {
	background-color: #111 !important;
	color: white !important;
	font-weight: 500 !important;
	border-radius: 0 5px 5px 0 !important;
}
button.button[name=update_cart][disabled] {
    margin-top: 10px !important;
	width: 100% !important;
	padding: 15px 10px !important;
	border: 1px solid #111 !important;
	color: #111 !important;
	opacity: 0.5 !important;
	background-color: transparent;
	border-radius: 5px;
	font-weight: 500 !important;
}
button.button[name=update_cart]:not([disabled]) {
    margin-top: 10px;
	border-radius: 5px;
	font-weight: 500 !important;
	width: 100%;
	padding: 15px 10px;
	background-color: #111 !important;
	color: white !important;
}

.cart-related-products ul.products.columns-2 {
    display: grid
;
    grid-template-columns: repeat(5, calc(20% - (4 * 20px / 5)));
}
.cart-related-products ul.products.columns-2 li {
	width: 100% !important;
	float: unset !important;
}
.cart-related-products {
    margin-top: 50px;
}

table.shop_table.shop_table_responsive th, table.shop_table.shop_table_responsive td {
    border: none !important;
    border-bottom: 1px solid black !important;
}

#add_payment_method .cart-collaterals .cart_totals table, .woocommerce-cart .cart-collaterals .cart_totals table, .woocommerce-checkout .cart-collaterals .cart_totals table {
	border: none;
	border-radius: 0;
}
a.checkout-button.button.alt.wc-forward {
    padding: 17px 15px;
    font-weight: 500;
    font-size: 18px;
    background: #111;
}

@media screen and (max-width: 1400px){
	.woocommerce-cart-form__cart-item.cart_item {
		grid-template-columns: 150px calc(100% - 170px);
		gap: 20px;
	}
	.cart-related-products ul.products.columns-2 {
		display: grid;
		grid-template-columns: repeat(4, calc(25% - (3* 20px / 4)));
	}
}
@media screen and (max-width: 1000px){
	.woocommerce-cart-form__cart-item.cart_item {
		grid-template-columns: 130px calc(100% - 150px);
		gap: 20px;
	}
	.cart-related-products ul.products.columns-2 {
		display: grid;
		grid-template-columns: repeat(3, calc((100% / 3) - (2 * 20px / 3)));
	}
	.woocommerce-cart-wrapper {
		display: grid
	;
		grid-template-columns: 100%;
		gap: 50px;
	}
}

@media screen and (max-width: 800px){
	.woocommerce-cart-form__cart-item.cart_item {
		grid-template-columns: 100px calc(100% - 110px);
		gap: 10px;
	}
	.cart-related-products ul.products.columns-2 {
		display: grid;
		grid-template-columns: repeat(2, calc(50% - (1* 20px / 2)));
	}
	.product-name a {
		font-size: 14px;
	}
	.cart-item-prices {
		gap: 5px;
	}
	span.variation-label {
		font-size: 12px;
		line-height: 12px;
		opacity: 0.6;
	}
	span.variation-value {
		font-size: 14px;
	}
}

@media screen and (max-width: 500px){
	.coupon {
		display: grid
	;
		grid-template-columns: 50% 50%;
		gap: 0;
	}
	.woocommerce .quantity .qty {
		width: 2em;
		text-align: center;
	}
	button.button[name=apply_coupon], .coupon input {
		font-size: 12px;
	}
}
@media screen and (max-width: 400px){
    .woocommerce-cart-form__cart-item.cart_item {
        grid-template-columns: 70px calc(100% - 110px);
        gap: 10px;
    }
	.woocommerce-cart-form__cart-item.cart_item img {
		padding: 5px
	};
	.product-remove {
		position: absolute;
		z-index: 3;
		right: 10px;
		top: 10px;
	}
	.product-variations, .cart-item-prices {
		margin-top: 10px;
	}
	button.button[name=update_cart][disabled] {
		font-size: 14px;
	}
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	width: 100%;
	float: unset;
}

form.checkout.woocommerce-checkout {
    display: grid
;
    grid-template-columns: calc(50% - 25px) calc(50% - 25px);
	gap: 50px;
}

body:not(.home) .products-menu-wrapper.container {
	background-color: #000;
}

table.shop_table.woocommerce-checkout-review-order-table {
    border: none;
	border-collapse: collapse;
}
table.shop_table.woocommerce-checkout-review-order-table td {
	border: none;
	border-bottom: 1px solid black;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
	border-bottom: 1px solid black;
}
dl.variation {
	font-size: 14px;
	margin-top: 5px;
	margin-left: 15px;
}
dl.variation p {
	margin: 0;
}

form.checkout.woocommerce-checkout input {
    border: 1px solid black !important;
    border-radius: 3px !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: rgb(229 229 229 / 14%);
    border-radius: 5px;
}
button#place_order {
    padding: 15px 10px;
    width: 100%;
    background: #111;
    color: white;
    font-weight: 500;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 1px solid #000000;
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    border-radius: 2px;
}

form.checkout_coupon.woocommerce-form-coupon button {
    padding: 10px 30px;
    background: #111;
    font-weight: 500;
    color: white;
}

.woocommerce-NoticeGroup {
    grid-column: span 2;
}

button.button[name=calc_shipping] {
    background: #111;
    color: white;
    font-weight: 400;
}
@media screen and (max-width: 400px){
	.product-thumbnail {
		border: 1px solid #1991b9;
		border-radius: 6px;
		overflow: hidden;
	}
}

.swiper-button-next, .swiper-button-prev {

	height: 40px !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 35px !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.woocommerce .woocommerce-customer-details address {
    font-style: normal;
    margin-bottom: 0;
    border: 1px solid rgb(0 0 0 / 100%) !important;
    border-bottom-width: 1px;
    border-right-width: 1px;
    text-align: left;
    width: 100%;
    border-radius: 5px;
    padding: 6px 12px;
    box-sizing: border-box;
}
table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    border: none;
}
a.button.wc-backward {
    border-radius: 3px;
    padding: 10px 30px;
    background: #111;
    color: white;
    font-weight: 500;
}

.liczby {
    position: relative;
    z-index: 3;
}
.configurator-wrapper {
    padding: 30px;
    border-radius: 10px;
    background: #F8F8F8;
}
	.form-columns {
		display: grid
	;
		grid-template-columns: 1fr 1fr;
		gap: 50px;
		margin-bottom: 50px;
	}
.header-data-smaller p {
    margin: 0;
}

.form-column.contact-column .header-data-smaller {
	color: white;
}

.header-data-smaller {
font-family: "Maven Pro";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.form-column.contact-column {
    padding: 30px;
    background: #000C10;
    border-radius: 10px;
}
.form-group {
    display: flex
;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.form-column.contact-column .form-group {
	color: white;
    font-weight: 500;
}
.form-group label {
    font-weight: 500;
}
.form-column.contact-column .form-group input, .form-column.contact-column .form-group select, .form-column.contact-column .form-group textarea {
	color: white;
}
.form-group input, .form-group select, .form-group textarea {
	border-radius: 6px;
	border: 1px solid;
	background-color: transparent;
	padding: 7px 10px;
	font-size: 16px;
}

.form-group.submit-group button {
    padding: 20px;
    border-radius: 6px;
    background: white;
    color: black;
    font-weight: 500;
	cursor: pointer;
}

.form-group.submit-group button:hover {
	background-color: #1991B9;
	border-color: #1991B9;
	color: white;
	transition-duration: 0.3s;
}
.data-form-header {
    margin-bottom: 40px;
}
.form-column.config-column {
    padding: 30px 0;
}

.konfigurator-image {
    max-height: 300px;
	overflow: hidden;
	border-radius: 20px;
}
.konfigurator-image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.custom-checkbox-block {
    height: 20px;
    width: 20px;
    border: 1px solid white;
	cursor: pointer;
	border-radius: 3px;
	flex: none;
}
input:checked + .custom-checkbox-block {
	background: white;
}
label.checkbox-container {
	display: flex;
	gap: 10px;
	align-items: top;
	cursor: pointer;
}
label.checkbox-container > input {
	display: none;
}
span.checkbox-text p {
	margin: 0;
}
.field-needed {
    border-color: red !important;
}

@media screen and (max-width: 1300px){
	.form-columns {
		display: grid
	;
		grid-template-columns: 1fr;
		gap: 0px;
		margin-bottom: 50px;
	}
	.form-column.config-column {
		padding: 0;
	}
	.header-data-smaller {
		font-family: "Maven Pro";
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}
}

@media screen and (max-width: 600px){
	.configurator-wrapper {
		padding: 30px var(--padding);
		margin-left: calc(-1 * var(--padding));
		margin-right: calc(-1 * var(--padding));
		border-radius: 0;
		background: #F8F8F8;
	}
	.form-column.contact-column {
		padding: 30px var(--padding);
		margin-left: calc(-1 * var(--padding));
		margin-right: calc(-1 * var(--padding));
		border-radius: 0;
	}
}

.conf-wrapper-main {
    display: grid
;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    row-gap: 10px;
}
@media screen and (max-width: 1000px) {
	.conf-wrapper-main {
		display: grid
	;
		grid-template-columns: 1fr;
		gap: 20px;
		row-gap: 10px;
	}
}

.konfigurator-popup {
    position: fixed;
    top: 0;
    left: 0;
    background: #0000005e;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.konfigurator-popup-content {
    background: white;
    padding: 30px;
	position: relative;
	max-width: 400px;
    border-radius: 10px;
}
.konfigurator-popup-content h3 {
    color: rgb(0, 12, 16);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
	margin: 0;
	margin-bottom: 20px;
}
.konfigurator-popup-content p {
	margin: 0;
}
span.konfigurator-popup-close {
    font-size: 30px;
    display: flex
;
    justify-content: center;
    align-items: end;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
}
nav.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
nav.woocommerce-MyAccount-navigation ul a {
	padding: 10px 30px;
	display: block;
	border: 1px solid #000C10;
	border-top: 0;
	text-decoration: none;
}
nav.woocommerce-MyAccount-navigation ul li:first-child a {
	border-top: 1px solid #000C10;
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
	background-color: #000C10;
	color: white;
	font-weight: 500;
}

.woocommerce table.shop_table {
    border: 1px solid #000C10;
    margin: 0;
    text-align: left;
    width: 100%;
    border-collapse: collapse;
    border-radius: 0;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 3px;
    left: auto;
    color: white;
    background-color: #000c10;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}

@media screen and (max-width: 1200px){
	.woocommerce-account .woocommerce {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	nav.woocommerce-MyAccount-navigation ul li a {
		border: 1px solid #000C10;
	}
	nav.woocommerce-MyAccount-navigation ul li {
		flex: none;
	}
	nav.woocommerce-MyAccount-navigation ul {
		display: flex;
		overflow-x: scroll;
		position: relative;
		padding-right: 40px;
	}
	nav.woocommerce-MyAccount-navigation {
		position: relative;
	}
	nav.woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
		height: 5px;
		background-color: #f1f1f1;
	}
	nav.woocommerce-MyAccount-navigation ul::-webkit-scrollbar-thumb {
		background-color: #000C10;
	}
	nav.woocommerce-MyAccount-navigation::after {
		content: "→";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		background: #000C10;
		color: white;
		padding: 5px 10px;
		pointer-events: none;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: left;
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		float: right;
		width: 100%;
	}
}

.wp-block-group.formularz-zgloszenia {
    max-width: 1000px;
    margin: auto;
}

div.wpforms-container-full .wpforms-form .wpforms-field-divider h3 {
	margin: 0;
	margin-top: 20px;
	padding: 0;
}

div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea, .wp-core-ui div.wpforms-container-full input[type=date], .wp-core-ui div.wpforms-container-full input[type=datetime], .wp-core-ui div.wpforms-container-full input[type=datetime-local], .wp-core-ui div.wpforms-container-full input[type=email], .wp-core-ui div.wpforms-container-full input[type=month], .wp-core-ui div.wpforms-container-full input[type=number], .wp-core-ui div.wpforms-container-full input[type=password], .wp-core-ui div.wpforms-container-full input[type=range], .wp-core-ui div.wpforms-container-full input[type=search], .wp-core-ui div.wpforms-container-full input[type=tel], .wp-core-ui div.wpforms-container-full input[type=text], .wp-core-ui div.wpforms-container-full input[type=time], .wp-core-ui div.wpforms-container-full input[type=url], .wp-core-ui div.wpforms-container-full input[type=week], .wp-core-ui div.wpforms-container-full select, .wp-core-ui div.wpforms-container-full textarea {
	padding: .5em !important;
}

div.wpforms-container-full input, div.wpforms-container-full select, .wp-core-ui div.wpforms-container-full input, .wp-core-ui div.wpforms-container-full select {
	height: auto;
}
.wpforms-container .wpforms-form .wpforms-field-label, .wpforms-container .wpforms-form .wpforms-field-sublabel, .wpforms-container .wpforms-form .wpforms-field-description, .wpforms-container .wpforms-form textarea, .wpforms-container .wpforms-form li, .wpforms-container .wpforms-form th {
	font-weight: 400;
	margin-bottom: 10px;
}
.wpforms-container input.wpforms-field-medium, .wpforms-container select.wpforms-field-medium, .wpforms-container .wpforms-field-row.wpforms-field-medium, .wp-core-ui div.wpforms-container input.wpforms-field-medium, .wp-core-ui div.wpforms-container select.wpforms-field-medium, .wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium {
	max-width: 100% !important;
	border-color: black !important;
}

.plik > a {
    display: flex
;
    gap: 5px;
    text-decoration: none;
}

.pliki-do-pobrania h3 {
	font-size: 16px;
	font-weight: 500;
	color: black;
	margin: 0;
	margin-bottom: 10px;
}
.podgrupa {
    padding: 10px 15px;
    background-color: #fbfbfb;
	margin-top: 10px;
}
.grupa {
	margin-top: 30px;
}

.entry-meta {
    color: white;
    opacity: 0.6;
}

.single-post .entry-content p {
	color: black;
}
.single-post .entry-content {
	margin-bottom: 100px;
}
/* .single-post .single-post-content {
    max-width: 1000px;
	margin: auto;
} */
/* .blog-header-wrapper {
    margin: auto;
    max-width: 1000px;
} */
.single-post ul {margin: 0;}

.single-post h2 {
	margin-top: 20px !important;
}
.row.blog-grid-wrapper {
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
}
.post-thumbnail a {
    display: flex
;
}

.post-thumbnail img {
	aspect-ratio: 600/314;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	border: 2px solid #1991B9;
}
h3.post-title a {
	text-decoration: none;
}
.post-meta {
    display: flex
;
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    background: white;
    border-radius: 0 0 0 15px;
    font-weight: 500;
    color: #21759b;
	border: 2px solid #1991B9;
}
.blog-single-blockv {
	position: relative;
}

@media screen and (max-width: 1600px){
	h3.post-title {
		font-size: 16px;
	}
	.post-excerpt {
		font-size: 14px;
	}
}
@media screen and (max-width: 1200px){
	h3.post-title {
		font-size: 16px;
	}
	.post-excerpt {
		font-size: 14px;
	}
	.row.blog-grid-wrapper {
    display: grid
;
    grid-template-columns: 1fr 1fr;
	gap: 50px;
}
}
@media screen and (max-width: 767px){

	.row.blog-grid-wrapper {
    display: grid
;
    grid-template-columns: 1fr 1fr;
	gap: 20px;
	row-gap: 40px;
}
}
@media screen and (max-width: 600px){

	.row.blog-grid-wrapper {
    display: grid
;
    grid-template-columns: 1fr;
	gap: 20px;
	row-gap: 40px;
}
}
.pagination {
    margin: 50px 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination > * {
    display: block;
    height: 49px;
    width: 49px;
    display: flex;
	text-decoration: none
;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 5px;
}
span.page-numbers.current {
	background-color: #1991B9;
	border-color: #1991B9;
	color: white
}


.single-post .single-post-content {
    display: grid
;
    grid-template-columns: 70fr 1px 30fr;
    gap: 50px;
}

.single-post-divider {
	height: 100%;
	width: 100%;
	background-color: #1991B9;
}

h3.standard-header {
    margin: 0;
	    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    margin-bottom: 20px;
    display: flex
;
    align-items: center;
    gap: 20px;
}
h3.standard-header::after {
	content: "";
	display: block;
	flex: 1;
	height: 1px;
	width: 100%;
	background-color: #1991B9;
}

div.wpforms-container-full input[type=submit]:not(:hover):not(:active), div.wpforms-container-full button[type=submit]:not(:hover):not(:active), div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full input[type=submit]:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full button[type=submit]:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
	background: #1991B9 !important;
}
.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
	padding-top: 0 !important;
}
.blog-cats {
	margin-bottom: 50px;
}

.blog-cats .categories-list {
    border: none;
	padding: 0;
}

.single-post-cta {
    height: fit-content;
    position: sticky;
    top: 40px;
}

@media screen and (max-width: 1200px){
	.single-post .single-post-content {
    display: grid
;
    grid-template-columns: 65fr 1px 35fr;
    gap: 50px;
}
}
@media screen and (max-width: 1000px){
	.single-post .single-post-content {
    display: grid
;
    grid-template-columns: 1fr;
    gap: 30px;
}
.single-post-divider {
	display: none;
}
}

.partner-price-label-adv {
	line-height: 100%;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #000000;
}
.partner-badge {
    padding: 1px 10px;
    background: #449ac1;
    border-radius: 3px;
    position: absolute;
    bottom: -15px;
    right: -10px;
}
span.partner-status {
    padding: 8px 30px;
    font-size: 18px;
    background: #449ac1;
    border-radius: 5px;
    font-weight: 600;
    color: white;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    border-radius: 0;
}

div#customer_login {
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before {
	display: none;
}
@media screen and (max-width: 1200px) {
    div#customer_login {
        gap: 50px;
    }
}

@media screen and (max-width: 768px) {
    div#customer_login {
        grid-template-columns: 1fr;
    }
}

div#customer_login > div:first-child {
    padding: 50px;
    background-color: #f9f9f9;
	border-radius: 10px;
}
div#customer_login > div {
	padding: 50px;
}
.site-footer {
    background: #000C10;
    margin-top: 100px;
}
.payment-method h3 {
    margin: 0;
	color: var(--ground);
	font-weight: 400;
}

.products-menu ul li.menu-item-has-children.submenu-open > .sub-menu{
	position: absolute;
	display: block;
	left: 0;	
	    width: 100%;
    background: #000000;
}

.toggled .submenu-open > .sub-menu {
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	padding-top: 5px;
}
.toggled #menu-produkty-naglowek .sub-menu {
	padding: 10px;
}

.links.footer-item ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.produkt-item a {
    display: block;
}

.inj-summary-section h4 {
    display: flex
;
    gap: 20px;
    align-items: center;
}

.inj-summary-section h4::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #1991B9;
}

.wpforms-submit {
    width: 100% !important;
}

.inj-summary-section > *:not(h4) {
    margin-left: 25px !important;
}

.payment-methods-title {
	margin-bottom: 20px !important;
}

ul.videos-list, .downloads-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: 10px;
	margin-top: 5px;
}

ul.videos-list a, .downloads-list a {
	text-decoration: none;
}

.product-downloads, .product-videos {
	margin-top: 15px;
}

@media screen and (max-width: 786px){
	.image-grid__item img {
		height: 60px;
		width: auto;
	}
	.image-grid {
		gap: 10px;
	}
}

span.price-gross span.woocommerce-Price-amount.amount {
    font-size: 12px;
    font-weight: 400;
}
span.price-note {
    font-size: 12px;
}

ul.tabs.wc-tabs {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	background-color: #f8f8f8;
}

ul.tabs.wc-tabs a {
	padding: 15px 35px;
	display: block;
	background-color: #f8f8f8;
	text-decoration: none;
		color: #000C10;
		font-weight: 500;
}

ul.tabs.wc-tabs li.active a {
	background-color: #1991B9;
	color: #ffffff;
}
.advanced-product-wrapper {
    border-bottom: 1px solid #e1e1e1;
	margin-bottom: 20px;
	padding-bottom: 20px;
}


h1, h2, h3, h4, h5, h6 {
	color: #000C10;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 2px;
}

@media screen and (max-width: 550px){
	ul.tabs.wc-tabs a {
		padding: 10px 20px;
		display: block;
		background-color: #f8f8f8;
		text-decoration: none;
		color: #000C10;
		font-weight: 500;
	}
}

.woocommerce-Tabs-panel > h2:first-child,
.additional_information_tab > h2:first-child {
    display: none;
}

.download-item svg {
	width: 60px;
	height: auto;
}

.download-item svg path {
	stroke: #1991B9;
}
li.download-item {
    list-style-type: none;
}
ul {
    list-style: disc;
    margin: 0;
}
small.woocommerce-price-suffix {
    color: black;
}

ul.filtry-tabs {
    display: flex
;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
	margin-bottom: 20px ; 

	border-radius: 10px;
	background-color: white;
}

@media screen and (max-width: 1000px){
	ul.filtry-tabs {
		flex-wrap: wrap;
	}
}

ul.filtry-tabs li {
	padding: 15px 30px;
	width: 100%;
	background-color: transparent;
	color: var(--ground);
	text-align: center;
	cursor: pointer;
	font-size: var(--h6-size);
}
ul.filtry-tabs li:not(.active):hover {
	background-color: #1991b918;
	border-radius: 10px;
	transition-duration: 0.3s;
}
ul.filtry-tabs li.active {
	background-color: #1991B9;
	color: white;
	border-radius: 10px;
	font-weight: 500;
}
.search-wrapper {
    position: relative;
}
.search-results ul.products, .search-results-mini > ul {
    display: flex;
    flex-direction: column;
}

.search-results-mini {
    top: 100%;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.search-wrapper a {
    text-wrap: auto;
}

li.benefits-info-button {
    cursor: pointer;
}

.section-header h3 {
    font-size: var(--text-3xl);
    color: white !important;
    margin: 0;
    font-weight: 600;
}
.align-items-center {
    color: white;
}
.liczby-grid {
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    row-gap: 10px;
}

.liczby-grid svg path {
	stroke: var(--color-cta);
}

.liczby-wrapper .container {
    position: relative;
    z-index: 5;
}
.liczby-header-wrapper {
    display: flex
;
    justify-content: space-between;
    gap: 30px;
    align-items: start;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.liczby-wrapper a.btn.btn-primary {
    padding: 15px 30px;
    background: var(--color-cta);
    border-radius: 10px;
    color: white;
	display: block;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: var(--text-xl);
	box-shadow: -4px 8px 10px rgba(0, 0, 0, 0.282);
    text-decoration: none;
	transition-duration: 0.2s;
}
.liczby-wrapper a.btn.btn-primary:hover {
	background-color: var(--color-cta-hover);
}

.liczby-top p {
    margin: 0;
	margin-top: 10px;
}
.liczba svg {
	flex: none;
}

@media screen and (max-width: 900px){
	.liczby-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 550px){
	.liczby-grid {
		grid-template-columns: 1fr;
	}
}

.produkt-item a {
    display: flex
;
    flex-direction: column;
}
.header-pomagamy .header {
    color: var(--ground);
}
.header-pomagamy .mini-header {
	color: var(--ground);
}
.header-pomagamy .mini-header::after {
	background-color: var(--ground);
}
.grid-item.has-icon.is-redirect {
    background: var(--color-cta);
}
a.pomagamy-tile-link {
    display: grid
;
    grid-template-columns: 100px 1fr;
    gap: 20px;
		align-items: center;
}
.grid-item.has-icon img {
    width: 100%;
	height: auto;
}
.grid-item.has-icon h3 {
    font-size: var(--text-4xl);
	margin: 0;
}
.grid-item.has-icon.is-redirect a {
    text-decoration: none;
}
.grid-item.has-icon:not(.is-redirect) {
    display: grid
;
    grid-template-columns: 100px 1fr;
    gap: 20px;
	align-items: center;
}
.grid-item.has-icon.is-redirect img {
    width: 100%;
	height: auto;
}
.grid-item.has-icon h3 {
    font-size: var(--text-3xl);
	margin: 0;
}
.grid-item.has-icon {
    background: #8ac7da;
}
.grid-item.has-icon.is-redirect {
    display: flex
;
}

.grid-item.has-icon:not(.is-redirect) * {
	color: var(--ground);
}

/* make partnerzy-wrapper full-bleed while keeping its internal alignment with other sections */
.partnerzy-wrapper {
	/* make the section span the full viewport width */
	width: 100vw;
	max-width: 100vw;
	position: relative;

	/* center the full-bleed element while keeping it edge-to-edge */
	left: 50%;
	right: 50%;
    margin-left: -51vw;
    margin-right: -51vw;

	/* preserve the original vertical padding and keep horizontal spacing aligned with other sections */
	padding: 30px var(--padding);
	box-sizing: border-box;

	/* keep existing layout behavior */
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	row-gap: 20px;
	justify-content: center;
}


.partnerzy-wrapper .partner-logo img {
	filter: grayscale(100%);
	    object-fit: contain;
}

.partnerzy-wrapper .partner-logo:hover img {
	filter: grayscale(0);
	transition: filter 0.3s ease;
}


span.menu-item-icon-wrap {
    height: 20px;
    width: 20px;
}

.onas-wrapper.two-columns {
    display: grid
;
    grid-template-columns: 4fr 7fr;
    gap: 50px;
}

@media screen and (max-width: 1300px){
	.onas-wrapper.two-columns {
    display: grid
;
    grid-template-columns: 5fr 6fr;
    gap: 30px;
}
}
@media screen and (max-width: 800px){
	.onas-wrapper.two-columns {
    display: grid
;
    grid-template-columns: 1fr;
    gap: 30px;
}
}
.onas-left img {
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}
.onas-right .mini-header {
	color: var(--ground);
}
.onas-right .mini-header::after {
	background-color: var(--ground);
}

@media screen and (min-width: 801px){
	.onas-right {
		padding: 30px 0;
	}
}
.onas-tekst em {
    font-style: normal;
    color: var(--color);
}

.menu-item-has-icon a {
    color: var(--color) !important;
}
.produkt-item {
    border-radius: 10px;
    overflow: hidden;
}
.grid-item.has-icon.is-redirect:hover {
	background-color: var(--color-cta-hover);
	transition-duration: 0.2s;
	cursor: pointer;
}

.second-search-button {
	margin-top: 20px;
}

@media screen and (min-width: 787px){
	button.filter-submit-button.second-search-button {
		display: none;
	}
}
	
@media screen and (max-width: 786px){
	.filters-header button.filter-submit-button {
		display: none;
	}
}

.custom-checkbox {
    margin-right: 5px;
}

span.price-tax-type {
    font-size: 18px;
    color: black !important;
}

@media screen and (max-width: 1200px){
	.advanced-product-wrapper {
		grid-template-columns: calc(40% - 10px) calc(60% - 10px);
		gap: 20px;
		align-items: start;
	}
	.li-product-content-cart-wrapper {
    grid-column: 1 / -1;
}
}

.bene-dot {
    height: 10px;
    width: 10px;
	flex: none;
    background: var(--color);
    border-radius: 100px;
}
.search-wrapper {
    width: 100%;
}
.hero-slider.shop-slider {
    margin-top: -90px;
}

body:not(.woocommerce-shop) .shop-header {
	background-color: #000;
}

.product-price {
    display: flex
;
    gap: 5px;
}
small {
    opacity: 0.6;
    font-size: 80%;
}
.quantity-controls button {
    border-radius: 4px;
    border: 1px solid black;
    background: transparent;
}

.mailcheck-error {
    display: none !important;
}
.price-current {
    display: flex;
    flex-direction: column;
    gap: 0;
}
span.old-price .woocommerce-Price-amount {
    color: red !important;
    font-weight: 400;
    text-decoration: line-through;
    font-size: 14px !important;
}
.discount-badge {
    background: red;
    width: fit-content;
    padding: 1px 3px;
    color: white;
    border-radius: 4px;
    font-size: 14px;
}
.price-old-with-discount {
    display: flex;
    gap: 5px;
    justify-content: end;
}
span.price-vat-note {
    font-size: 14px;
}
span.price-gross-small *, span.price-gross-small {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #000000ba;
}
.site-branding {
    flex: none;
    margin-right: 20px;
}

@media screen and (min-width: 1921px) {
	.zalety {
		border-radius: 30px;
	}
}
h2#benefits-title svg {
    height: 30px;
    width: 30px;
}
.benefit-item svg {
    height: 20px;
    width: 20px;
}
span.heart-icon {
    display: none;
}
button#copyCartUrlBtn {
    padding: 10px 20px;
    border-radius: 3px;
    background: transparent;
    border: 1px solid black;
}

.search-wrapper input {
	width: 100% !important;
}
[name=save_cart_editor] {
    background: #111111;
    color: white;
    padding: 13px;
    border: none;
}
button#editCartBtn {
    background: #111111;
    color: white;
    padding: 13px;
    border: none;
}


.woocommerce .header-wrapper.container.shop-header, .woocommerce-page .header-wrapper.container.shop-header, .search .header-wrapper.container.shop-header {
	position: sticky;
	top: 0;
}
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.section-image-column img {
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.section-image-column {
	position: relative;
	height: 100%;
	min-height: 300px;
}
.category-sections-wrapper {
    display: grid;
    gap: 30px;
	margin-bottom: 30px;
}

@media screen and (max-width: 1400px){
	.section-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
}