/*
Theme Name: datazen
Theme URI: https://wordpress.org/themes/datazen/
Author: the WordPress team
Author URI: https://wordpress.org
Description: datazen emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: datazen
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/* Variables */
:root {
	--global--content--width: 1256px;
  --global--main-color: #2E2E70;
  --global--secondary-color: #133521;
  --global--tertiary-color: #FCA804;
  --global--main-lighter-color: #E7F3EE;
  --global--dark-green: #076733;
  --global--dopacjenta-green: #1C7939;
  --global--dark: #2E2A27;
  --global--blue: #3A5FD2;
}


/* === RESET CSS / BASE STYLES === */

/* 1. Ustaw domyślny box-sizing */
*, *::before, *::after {
	box-sizing: border-box;
  }
  
  /* 2. Usuń marginesy i paddings */
  body, ul, ol, figure, blockquote, dl, dd {
	margin: 0;
	padding: 0;
  }

  body {
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #5E6A61;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
  }
  
  h1, h2, h3, h4, h5, h6, caption, figcaption, p {
	margin-top: 0px;
  }
  
  /* 4. Usuń domyślny styl linków */
  a {
	text-decoration: none;
	color: inherit;
  }
  
  /* 6. Obrazy i media max-width 100% */
  img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
  }
  
  /* 7. Formularze */
  input, button, textarea, select {
	font: inherit;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	outline: none;
  }
  
  /* 8. Usuń domyślną stylizację przycisków */
  button {
	cursor: pointer;
	background: transparent;
	border: none;
  }
  
  /* 9. HTML5 display roles */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, main, menu, nav, section {
	display: block;
  }
  
  /* 10. Scroll behavior */
  html:focus-within {
	scroll-behavior: smooth;
  }
  
  /* 11. Usuń focus outline na klik (ale zostaw dla klawiatury) */
  *:focus-visible {
	outline: 2px solid #000;
  }
  
  *:focus:not(:focus-visible) {
	outline: none;
  }
  
/* Main styles */

.wp-block-columns {
	gap: 32px;
	max-width: var(--global--content--width);
  margin: 0 auto;
}

.wp-block-columns.gap-double {
  gap: 64px
}

/* zwiekszony */
.wp-block-columns.alignwide {
	max-width: 80%;
	margin: 0 auto
}

/* pełny */
.wp-block-columns.alignfull {
	max-width: 100%;
}

/* zawezony */

.wp-block-columns.ten-twelve {
  max-width: 1006px;
}

.narrow-column {
  max-width: 864px;
}

.centered-column {
  margin: 0 auto !important;
}

.narrow-form-column {
  max-width: 522px;
  margin: 0 auto;
}

.wp-block-image {
  margin: 0px;
}

.wp-block-columns:not(.alignfull) {
  padding: 0 20px;
}

.wp-block-column {
  position: relative;
}

.has-extra-small-font-size {
	font-size: 13px;
	line-height: 16px;
	font-weight: 500;
  }
  
  .has-small-font-size {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
  }
  
  .has-normal-font-size {
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
  }

  p {
    margin-bottom: 20px;
  }

  p strong {
    color: var(--global--dark);
    font-weight: 700;
  }

  p.has-white-color strong {
    color: #fff;
  }

  p.strong {
    font-weight: 700;
  }

  p a {
    color: var(--global--main-color );
  }
  
  .has-as-h-6-font-size,
  .as-h-6,
  h6 {
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
  margin-bottom: 20px;
  }
  
  .has-as-h-5-font-size,
  .as-h-5,
  h5 {
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
  margin-bottom: 4px;
  }
  
  .has-as-h-4-font-size,
  .as-h-4,
  h4 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
  margin-bottom: 12px;
  }
  
  .has-as-h-3-font-size,
  .as-h-3,
  h3 {
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
  margin-bottom: 20px;
  }
  
  .has-as-h-2-font-size,
  .as-h-2,
  h2 {
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
  margin-bottom: 24px;
  }
  
  .has-as-h-1-font-size,
  .as-h-1,
  h1 {
	font-size: 44px;
	line-height: 48px;
	font-weight: 700;
  margin-bottom: 28px;
  }

  h1, h2, h3, h4, h5, h6,
  .as-h-1, .as-h-2, .as-h-3, .as-h-4, .as-h-5, .as-h-6,
  .has-as-h-1-font-size, .has-as-h-2-font-size, .has-as-h-3-font-size,
  .has-as-h-4-font-size, .has-as-h-5-font-size, .has-as-h-6-font-size {
    font-family: "figtree";
    color: var(--global--dark);
  }

  ol.wp-block-list {
  margin-left: 16px;
}

ol.wp-block-list li {
  margin-bottom: 4px;
}

  /* blockquote */

.wp-block-quote {
  padding: 24px 16px 24px 80px;
  background: #133521 url('assets/images/quote-bg.webp') no-repeat top left;
  background-size: cover;
  font-family: "figtree italic";
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  border-radius: 25px;
  margin: 40px 0 20px;
  position: relative;
  border: 0;
}

.wp-block-quote strong {
  color: var(--global--main-color);
}

.wp-block-quote::after {
  position: absolute;
  content: "";
left: -52px;
  top: -102px;
  width: 204px;
  height: 204px;
  background: url('assets/images/quote-sign.webp') no-repeat;
}

blockquote p {
  margin: 0;
}
  
/* === GLOBAL CONTAINER === */
.container {
	max-width: 1256px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
  }
  
  /* === HEADER === */
  .site-header {
	background: #fff;
	font-family: inherit;
  }
  
  /* === TOP HEADER === */
  .top-header {
      background-color: #fff;
    font-family: 'Figtree', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    overflow: hidden;
  border-bottom: 1px solid #DEEAF2;
  }

  .top-header-content {
    display: flex;
    justify-content: space-between;
  }
  
  .top-header-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    justify-content: end;
  }

  .top-additional-data {
    color: #B5ABA9;
    padding-left: 24px;
    border-left: 1px solid #F0E9E7;
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
  }
  
  .top-header-content a {
	text-decoration: none;
  }

.email-silbings {
  display: flex;
  flex-direction: column;
  height: 46px;
  margin-top: -5px;
}

  .top-mail a {
    color: #019444;
    font-weight: 500;
    font-size: 13px;
  }

  .top-phone a {
  color: #607169;
  font-size: 16px;
  font-weight: 600;
  }
  
  .top-header svg {
	margin-right: 8px;
	vertical-align: middle;
  }

  #top-navigation {
  display: flex;
  align-items: center;
}

#header-top-menu-list {
  list-style: none;
  display: flex;
  gap: 24px;
}

#header-top-menu-list a {
  font-family: "figtree";
  color: #8DA69A;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

#header-top-menu-list a:hover {
  color: var(--global--dark-green);
}

.temporary-disabled {
    display: none;
}

.header-top-phone a {
    color: #4D5660;
    font-size: 16px;
    font-weight: 600;
  }

.header-top-mail a {
    color: #6EA6C9;
    font-weight: 400;
    font-size: 14px;
}  

.header-left-contact::after {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #DEEAF2;
    position: absolute;
    right: 0;
    top: 7px;
}
  
.header-left-contact {
    padding-right: 28px;
    position: relative;
}  

.header-top-left {
  display: flex;
  gap: 20px;
  line-height: 1.4;
  align-items: center;
}

.open-hours-weekday {
  margin-bottom: 2px;
}

.open-hours-holder {
    color: #B2BEC5;
    font-weight: 600;
    font-size: 12px;
}  

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }  

.header-top-menu {
    
}

.header-top-menu a {
    color: #848F96;
    font-size: 13px;
    margin-left: 24px;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 72px;
  }

  .header-right-nfz::after {
    content: "";
    background-color: #2e2e70;
    width: 1000px;
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
  }
  
  .header-right-nfz {
    position: relative;
  }

.blue-circle {
    background-color: #8DD0FA;
    border-radius: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 12px;
    left: -25px;
  }
  
.health-worker-text-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.health-worker-badge {
    border-radius: 7px;
    background-color: #8DD0FA;
    align-self: start;
    font-size: 12px;
    color: #1B1B52;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0px 8px;
    height: 18px;
    line-height: 16px;
  }

.health-worker-description {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 16px;
    margin-top: 4px;
    font-style: italic;
  width: 100px;
  margin-bottom: 0px;
  }  

  .health-worker-container {
    position: relative;
  }

  .health-worker-content {
    display: flex;
    align-items: center;
    background: #2E2E70;
    border-radius: 200px 0 0 200px;
    overflow: hidden;
    position: relative;
    min-width: 310px;
  }

  .health-worker-purple-circle {
    position: absolute;
    background-color: #1B1B52;
    width: 133px;
    height: 133px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: -28px;
    z-index: 0;
    right: 0;
  }

  .header-bottom .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-bottom {
    padding: 22px 0;
  }
  
  /* === MAIN HEADER === */
  .main-header {
	padding: 20px 0;
  border-bottom: 1px solid #DEEAF2;
  }

  .wc-block-mini-cart__quantity-badge {
	background: url('assets/images/cart.svg') no-repeat center center !important;
	background-size: contain !important;
	width: 31px !important;
	height: 33px !important;
}

.header-cart {
  display: flex;
  gap: 22px;
  align-items: center;
}

.header-cart-title {
  max-width: 60px;
  color: #7C8E86;
  font-family: "figtree";
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
}

.wc-block-mini-cart__icon {
	display: none !important;
}

.header-cart .wc-block-mini-cart__badge {
  background: var(--global--main-lighter-color);
  color: var(--global--dark);
  font-family: "figtree";
  font-size: 16px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  padding: 0;
  transform: none;
  bottom: -1px;
  margin-left: -6px;
}
  
  .MenuSection {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  /* === SITE BRANDING === */
  .site-branding img {
	height: auto;
	max-height: 48px;
  width: auto;
  }
  
  /* === NAVIGATION === */
  .primary-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    }
    
    .primary-menu-container {
    display: flex;
    align-items: center;
    }
    
  .NavList {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px;
    align-items: center;
    position: relative;
  }

  .NavList > li {
    height: 60px;
    display: flex;
    align-items: center;
  } 

  .NavList li.has-megamenu {
    position: inherit;
  }
  
.NavList > li > a {
  text-decoration: none;
  color: var(--global--dark);
  font-weight: 600;
  font-family: "Figtree";
  font-size: 16px;
  transition: all .3s ease;
}

  .NavList > li > a:hover {
    color: var(--global--main-color)
  }

  .NavList > li > a.current_page_item {
    color: var(--global--secondary-var-color);
  }

  .sub-menu-toggle {
    display: none;
  }
  
  .menu-item .icon {
    display: inline-block;
    margin-left: 8px;
    /* transform: rotate(0deg); */
    transform: translateY(-4px);
    transition: transform 0.3s ease;
    }
  
  .menu-item.menu-item-has-children > .icon::before {
    content: "\f078";
    font: normal normal normal 12px/1 FontAwesome;
    color: #377550;
    }
  
    /* .menu-item.menu-item-has-children:hover > .icon {
    transform: rotate(180deg);
    } */
  
  /* Ukrycie rozwijanego podmenu */
  #site-navigation .NavList > li > .sub-menu,
  #site-navigation .sub-menu:not(.has-columns) .sub-menu  {
  position: absolute;
  left: 0;
  top: 60px;
  background: #F5F9F7;
  width: 820px;
  z-index: 99;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 16px 80px -30px rgba(66, 102, 85, 0.6);
  padding: 28px 36px;
  border-radius: 35px;
}

  .sub-menu.has-columns > li {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d5dede;
    padding-right: 32px;
  }

  .sub-menu.has-columns > li:last-child {
    border: 0;
  }

  #site-navigation .menu-item.menu-item-has-children:hover > .sub-menu:not(.has-columns) {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  #site-navigation .menu-item.show-submenu > .sub-menu.has-columns {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sub-menu a.submenu-headline {
    cursor: default;
    position: relative;
    font-family: "LeagueSpartan";
    color: #212424;
    padding: 8px 0px 28px 32px;
    font-size: 18px;
  }

  .sub-menu a.submenu-headline:hover {
    color: inherit;
  }
  
  .sub-menu .icon {
  display: none;
  }

  .sub-menu.has-columns {
    display: grid;
    gap: 1.5rem;
  }

  .sub-menu.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-menu.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .sub-menu.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  #site-navigation .menu-item.menu-item-has-children > .sub-menu > li:hover .sub-menu {
  pointer-events: all;
  transform: translate(0px, 0px);
  }
  
  .sub-menu li {
  list-style: none;
  }
  
.sub-menu li a:not(.datazen-button) {
    text-decoration: none;
    text-decoration-thickness: auto;
    margin-bottom: 0;
    display: block;
    transition: all 0.3s ease, color 0.3s ease;
    line-height: 20px;
    padding-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
    color: #576262;
}
  
  .sub-menu li a:hover {
  color: var(--global--secondary-color);
  font-weight: 600;
  }

  .has-columns .sub-menu {
    padding-left: 32px;
  }

  .menu-widget-content .wp-block-columns {
    padding: 0;
  }

  .sub-menu .megamenu-head.menu-item {
  font-size: 20px;
  font-family: "figtree";
  color: var(--global--dark);
  font-weight: 700;
  padding-bottom: 8px;
}

.sub-menu .btn-type-secondary {
  padding: 6px 30px 6px 30px;
}

.sub-menu .btn-type-secondary {
  padding: 6px 22px 6px 28px;
  gap: 10px;
  margin-bottom: 20px;
}

.sub-menu .datazen-icon {
  background-size: 16px;
}

.sub-menu .has-as-h-6-font-size {
  margin-bottom: 12px;
}

.sub-menu .widget_nav_menu li a {
  font-size: 16px;
  padding-bottom: 8px;
}

.tag-button {
  text-align: right;
}

.sub-menu .tag-button a {
  border-radius: 50px;
  padding: 4px 12px !important;
  background-color: var(--global--main-lighter-color);
  color: var(--global--secondary-color);
  transition: all .3s ease-in-out;
  display: inline-flex !important;
}

.sub-menu .tag-button a:hover {
  color: #fff;
  background-color: var(--global--secondary-color);
}
  
  /* === MENU MODAL (mobilne menu) === */
  
  .showing-menu-modal .menu-modal {
	display: block;
  }
  
  .menu-modal .menu-top {
    flex-shrink: 0;
    padding-top: 42px;
  }
  
  .menu-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .menu-modal-inner {
    background: #fff;
    display: flex;
    justify-content: stretch;
    width: calc(100% - 30px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .menu-modal.active .menu-modal-inner {
    transform: translateX(0);
    transition-delay: 0.3s;
  }
  

  .menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }

  .mobile-nav-toggle-button {
    display: flex;
    padding: 10px 20px;
    margin: 20px 0;
    float: right;
    background: var(--global--main-color);
    border-radius: 5px;
  }

  .close-mobile-nav-toggle-button {
    display: flex;
    background: var(--global--dark-green);
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 50px;
    position: absolute;
    right: -24px;
    top: 8px;
    z-index: 999;
  }

  .modal-menu .ancestor-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .sub-menu-toggle {
    width: 28px;
    height: 28px;
    background: #d7ddd5;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
   transition: all .3s ease-in-out;
  }

  .sub-menu-toggle.open-toggle {
    transform: rotate(180deg);
  }

  .sub-menu-toggle .svg-icon {
    width: 14px;
    margin-top: 1px;
  }

  .sub-menu-toggle .svg-icon polygon {
    fill: #666161;
  }
  
  .menu-wrapper .menu-item {
    position: relative;
  }
  .modal-menu li {
    display: flex;
    flex-wrap: wrap;
    line-height: 1;
    justify-content: flex-start;
    margin: 0;
  }
  
  .modal-menu > li > a, .modal-menu > li > .ancestor-wrapper > a {
    font-size: 20px;
    font-weight: 700;
    font-family: "figtree";
  }

  .mobile-menu .sub-menu li a:not(.datazen-button) {
    font-size: 14px;
    padding: 0;
    width: 100%;
  }
  
  body.showing-menu-modal {
	overflow: hidden;
  }

    .menu-bottom {
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    background: #f3faf7;
  border-top: 1px solid #d7e6df;
  }
  
  .top-data-el {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-data-el-icon {
  background: var(--global--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  height: 36px;
  width: 36px;
}

  .header-navigation-container {
		align-items: end;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	ul.primary-menu {
		display: flex;
		gap: 28px;
		padding: 0;
    list-style: none;
	}

	.primary-menu > li {
    position: relative;
	  }

	.primary-menu > li a {
		color: var(--global--dark);
    font-weight: 600;
    font-size: 14px;
		transition: all .3s ease-in-out;
    padding-bottom: 30px;
	}

	.primary-menu > li a:hover {
		color: var(--global--main-color);
	}

	.primary-menu > li > .sub-menu > li:hover > a,
	.primary-menu > li > .sub-menu > li > .sub-menu > li:hover a {
		color: var(--global--main-color);
	}

	.menu-item .icon {
		display: inline-block;
		margin-left: 8px;
		/* transform: rotate(0deg); */
		transform: translateY(-2px);
		transition: transform 0.3s ease;
	  }

	  /* .menu-item.menu-item-has-children:hover > .icon {
		transform: rotate(180deg);
	  } */

@media (min-width: 1200px) {
        /* Ukrycie rozwijanego podmenu */
        .sub-menu {
          position: absolute;
          left: -21px;
          top: 35px;
          background: #fff;
          z-index: 999;
          opacity: 0;
          transform: translateY(-10px);
          transition: all 0.3s ease;
          width: 280px;
          border-radius: 0 0 24px 24px;
        }

        .primary-menu > li > .sub-menu {
        display: none;
        padding: 10px 22px 10px;
    box-shadow: 0px 24px 24px -3px rgba(0,0,0,0.25);
        }

        .primary-menu > li > .sub-menu .sub-menu {
          padding: 24px;
          top: 28px;
          background: #C5DBD0;
          border: 0 none;
          box-shadow: none;
          left: 248px;
          border-radius: 13px;
        transform: translate(-20px, 0px);
        pointer-events: none;
        transition: all 0.3s ease;
        /* height: calc(100% - 55px) */
        }

        .primary-menu > li > .sub-menu > li {
        max-width: 220px;
        }
}

  .sub-menu .icon {
	display: none;
  }
  
  .menu-item.menu-item-has-children:hover > .sub-menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
  }
  .menu-item.menu-item-has-children > .sub-menu > li:hover .sub-menu {
	pointer-events: all;
	transform: translate(0px, 0px);
  }

.sub-menu.active-submenu {
	/* width: 560px; */
	width: 310px;
	padding-right: 50px;
  }

  .megamenu-headline a {
	color: #1A1E17 !important;
	text-transform: uppercase;
	font-size: 13px !important;
	font-family: "wonder_unitsemibold" !important;
	margin-bottom: 12px !important;
  }

  .megamenu-headline a:hover {
	border-color: transparent !important;
}

  .sub-menu li {
	list-style: none;
  } 

  .sub-menu .sub-menu li a {
	padding-right: 8px;
  }

  .sub-menu .subm-menu li a:hover {
	border-color: #fff;
  }  
  
  /* === MOBILE MENU TOGGLE === */
  .mobile-nav-toggle-button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
  }
  
  /* Ukryj przycisk nawigacji na desktopie */
  @media (min-width: 1025px) {
	.mobile-nav-toggle-button {
	  display: none;
	}
  }

/* mobile menu */

.menu-modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}
  
  .mobile-nav-toggle-button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
  }
  
  .modal-menu {
	list-style: none;
	margin: 30px 0 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: #fff;
  }
  
  .modal-menu li a {
	text-decoration: none;
	font-size: 20px;
	color: #121212;
  }
  
  body.showing-menu-modal {
	overflow: hidden;
  }
  

  .datazen-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 800px;
}

.datazen-slide::before {
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.datazen-slide {
    display: none;
    animation: fadeIn 0.8s ease;
    position: relative;
    max-height: 800px;
}

.datazen-slide img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  transform: translateY(-10%);
  z-index: 0;
}

.datazen-slide-content {
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 800px;
  position: relative;
  align-items: start;
}

.datazen-slider-subtitle,
.datazen-slider-title,
.datazen-slider-text {
    opacity: 0;
    animation-fill-mode: forwards;
}

.datazen-slider-subtitle {
    animation: slideUpFadeIn 0.6s ease 0s forwards;
}

.datazen-slider-title {
    animation: slideUpFadeIn 0.6s ease 0.2s forwards;
}

.datazen-slider-text {
    background: #006965;
    font-weight: 300;
    padding:24px 220px 0 28px;
    position: absolute;
    bottom: 0;
    max-width: 800px;
    right: 0;
    animation: slideRightFadeIn 0.6s ease 1s forwards;
    max-height: 120px;
    height: 120px;
  }

@keyframes slideUpFadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideRightFadeIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* grid system */

.dz-system-columns {
  gap: 2.63%;
  max-width: var(--global--content--width);
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: nowrap;
  display: flex;
}

.dz-system-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.six-twelve {
  flex-basis: 50%;
}

.two-twelve {
  flex-basis: 14.47%;
}

.four-twelve {
  flex-basis: 31.58%;
}

.eight-twelve {
  flex-basis: 65.79%;
}

.ten-twelve {
  flex-basis: 82.89%;
}

.three-twelve {
  flex-basis: 23.03%;
}

.nine-twelve {
  flex-basis: 74.34%;
}

/* Footer */

.page-main {
    max-width: 1256px;
    padding: 0;
    margin: 0 auto
}

.page-footer {
    background: #fff;
    border-top: 1px solid #DEEAF2;
    padding-top: 52px;
    padding-bottom: 52px;
    margin-top: 8px;
  }

  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 72px;
  }

  .footer-contact-icon {
    background: #2F2F71;
    border-radius: 12px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-contact {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .footer-company-logo {
    max-width: 140px;
  }

  .footer-contact-data {
    border-left: 1px solid #deeaf2;
    padding-left: 20px;
  }

  .footer-phone a {
    color: #3d4246;
    font-family: "Figtree";
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
  }

  .footer-mail a {
    font-family: "Figtree";
    font-weight: 400;
    display: block;
    color: #6EA6C9;
  line-height: 1;
  }

  .partners-logo {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .footer-company-data {
    text-align: right;
  }

  .footer-facebook {
    display: flex;
    gap: 12px;
    color: #0D00FF;
    font-size: 13px;
    margin-top: 20px;
    align-items: center;
  }

  .footer-company-address {
    font-size: 16px;
    color: #292D31;
    line-height: 21px;
    margin-bottom: 20px;
  }

  .footer-bottom-left {
    display: flex;
    gap: 30px;
    flex: 1 0 auto;
  }

  .footer-widget {
    max-width: 210px;
    flex: 1 0 210px;
  }

  .footer-company-openings {
    font-size: 13px;
    color: #848F96;
  }

  .footer-company-openings .open-hours-weekday {
    margin-bottom: -4px;
  }

  .footer-bottom {
    display: flex;
    align-items: start;
    justify-content: space-between;
  }

  .footer-widget .heading-size-h5 {
    margin-bottom: 8px;
  }

  .footer-menu {
    list-style: none;
    padding-left: 0;
  }

  .footer-menu a {
    color: #848F96;
    font-size: 13px;
    display: block;
  }

  .footer-menu li {
    margin-bottom: 4px;
  }

/* buttons */

.datazen-buttons-wrapper {
  display: flex;
  width: 100%;
}

.datazen-buttons-wrapper.align-center {
  display: flex;
  justify-content: center;
}

.btnsiblings {
  display: flex;
  gap: 32px;
}

.datazen-conjunction {
  font-family: "Inter italic";
  color: var(--global--dark);
  display: flex;
  align-items: center;
  font-size: 16px;
}

.datazen-button, #place_order {
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: "figtree";
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-type-primary {
  padding: 15px 38px 15px 38px;
  font-size: 18px;
  color: #fff;
}

.btn-type-secondary {
  padding: 10px 30px 10px 30px;
  font-size: 16px;
  color: #fff;
}

.btn-type-tertiary {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 4px 28px;
  border-radius: 50px;
  border: 2px solid;
}

.btn-type-tertiary .datazen-button-text {
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: .2px;
}

.btn-type-secondary .datazen-icon {
  margin-right: -4px;
}


.btn-type-tertiary .datazen-icon {
  content: "";
  display: inline-block;
  width: 17px;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg width="17" height="10" viewBox="0 0 17 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 1L16 5M16 5L12 9M16 5L1 5" stroke="%23375858" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 0;
  transition: transform 0.3s ease;
}

.btn-type-tertiary:hover .datazen-icon {
  transform: translateX(5px);
}

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.btn-type-primary.btn-with-icon {
  padding:6px 6px 6px 32px;
}

/* === TYP PRIMARY === */
.btn-type-primary.btn-color-glowny { background-color: var(--global--dopacjenta-green); }
.btn-type-primary.btn-color-odwrocony { background-color: var(--global--main-color); }
.btn-type-primary.btn-color-yellow { background-color: var(--global--tertiary-color); }
.btn-type-primary.btn-color-blue { background-color: var(--global--blue); }
.btn-type-primary.btn-color-czarny { background-color: var(--global--dark); }

.btn-type-primary.btn-txtcolor-glowny { color: var(--global--dopacjenta-green); }
.btn-type-primary.btn-txtcolor-odwrocony { color: var(--global--main-color); }
.btn-type-primary.btn-txtcolor-white { color: #fff; }
.btn-type-primary.btn-txtcolor-blue { color: var(--global--blue); }
.btn-type-primary.btn-txtcolor-black { color: var(--global--dark); }

/* === TYP SECONDARY === */
.btn-type-secondary.btn-color-glowny { background-color: var(--global--main-color); }
.btn-type-secondary.btn-color-odwrocony { background-color: var(--global--main-color); }
.btn-type-secondary.btn-color-yellow { background-color: var(--global--tertiary-color); }
.btn-type-secondary.btn-color-blue { background-color: var(--global--blue); }
.btn-type-secondary.btn-color-czarny { background-color: var(--global--dark); }

.btn-type-secondary.btn-txtcolor-glowny { color: var(--global--dopacjenta-green); }
.btn-type-secondary.btn-txtcolor-odwrocony { color: var(--global--main-color); }
.btn-type-secondary.btn-txtcolor-white { color: #fff; }
.btn-type-secondary.btn-txtcolor-blue { color: var(--global--blue); }
.btn-type-secondary.btn-txtcolor-black { color: var(--global--dark); }

/* === TYP TERTIARY === */
/* tylko kolor tekstu */
.btn-type-tertiary.btn-txtcolor-glowny { color: var(--global--dopacjenta-green); }
.btn-type-tertiary.btn-txtcolor-odwrocony { color: var(--global--main-color); }
.btn-type-tertiary.btn-txtcolor-yellow { color: var(--global--tertiary-color); }
.btn-type-tertiary.btn-txtcolor-blue { color: var(--global--blue); }
.btn-type-tertiary.btn-txtcolor-black { color: var(--global--dark); }

.btn-type-tertiary.btn-color-glowny:hover {
  background-color: var(--global--dark);
}

.btn-type-tertiary.btn-color-odwrocony:hover {
  background-color: var(--global--dark);
}

.btn-type-tertiary.btn-color-czarny:hover {
  background-color: var(--global--main-color);
}

.btn-type-tertiary.btn-color-white:hover {
  background-color: var(--global--dark);
}

.btn-type-primary.btn-color-glowny:hover,
.datazen-box:hover .datazen-button.btn-color-glowny,
.btn-type-primary.btn-color-yellow:hover {
  background-color: color-mix(in srgb, var(--global--main-color), black 30%);
}

.btn-type-primary.btn-color-yellow:hover {
  color: #fff;
}

.btn-type-primary.btn-color-odwrocony:hover {
  background-color: color-mix(in srgb, var(--global--secondary-color), black 20%);
}

.btn-type-primary.btn-color-czarny:hover {
  background-color: color-mix(in srgb, var(--global--dark), black 20%);
}

.btn-type-primary.btn-color-czarny-var:hover {
  background-color: color-mix(in srgb, var(--global--dark), black 20%);
}

.btn-type-primary.btn-color-white:hover {
  background-color: color-mix(in srgb, #fff, black 20%);
}

.btn-type-primary.btn-color-czarny:hover {
  background-color: color-mix(in srgb, #212424, black 20%);
}

.btn-type-secondary.btn-color-glowny:hover {
  background-color: color-mix(in srgb, var(--global--main-color), black 20%);
}

.btn-type-secondary.btn-color-odwrocony:hover {
  background-color: color-mix(in srgb, var(--global--secondary-color), black 20%);
}

.btn-type-secondary.btn-color-czarny:hover {
  background-color: color-mix(in srgb, var(--global--secondary-color), black 20%);
}

.btn-type-secondary.btn-color-czarny-var:hover {
  background-color: color-mix(in srgb, var(--global--secondary-var-color), black 20%);
}

.btn-type-secondary.btn-color-white:hover,
.btn-type-secondary.btn-color-czarny:hover {
  border-color: var(--global--secondary-color);
}

/* TABS */

.datazen-tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.datazen-tabs-nav button {
  padding: 0.5rem 1rem;
  background: #eee;
  border: none;
  cursor: pointer;
}

.datazen-tabs-nav button.active {
  background: #000;
  color: #fff;
}

.datazen-tab-panel {
  display: none;
}

.datazen-tab-panel.active {
  display: block;
}


/* modal */

.datazen-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.6);
}

.datazen-modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	width: 80%;
	max-width: 600px;
	position: relative;
	border-radius: 12px;
}

.datazen-modal-close {
	position: absolute;
	top: 10px;
	right: 16px;
	cursor: pointer;
	font-size: 24px;
}


/* counter */

.datazen-counter {
  display: flex;
  flex-direction: column;
  color: var(--global--secondary-color);
  font-family: "figtree";
}

.counter-number {
	display: inline-flex;
	align-items: baseline;
	font-weight: 700;
  font-size: 50px;
  line-height: 52px;
}

.counter-symbol {
  margin-left: 8px;
}

.counter-title {
  font-size: 16px;
  font-weight: 500;
}

/* datazen contact box */

.datazen-contact-box {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.datazen-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.datazen-contact-content > div {
color: var(--global--dark);
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: .2px;
  opacity: .7;
}

.datazen-contact-content a {
  color: #64977B;
  font-size: 16px;
  font-weight: 600;
}

.datazen-contact-icon {
  width: 42px;
  height: 42px;
  display: flex;
  background: var(--global--dark-green);
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex: 0 0 42px;
}

/* Boxed styles */

.wp-block-group {
  display: grid;
}
/* 
.block-group-three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 32px; 
} */

.block-group-two {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
  gap: 32px 70px;
}

.block-group-three {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 0 40px;
}

.wp-block-group.is-layout-flex {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.wp-block-group.is-layout-flex > * {
  width: auto !important;
}

/* ozdobny tytul */

.datazen-decorative-title {
  margin-bottom: 24px;
}

.datazen-decorative-title.align-center {
  text-align: center;
}

.datazen-title {
  margin-bottom: 4px;
}

.datazen-subtitle {
  color: var(--global--dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  font-family: "figtree Italic";
}

.small-subtitle .datazen-subtitle {
  font-size: 15px;
  line-height: 21px;
}

.datazen-title.as-h-5 {
  font-weight: 700;
}

.datazen-decorative-title.type-free .tytul-wrapper {
  position: relative;
  margin-top: -16px;
  height: 78px;
  margin-bottom: 52px;
}

.datazen-decorative-title.type-free .datazen-title {
  font-size: 74px;
  margin: 0;
  line-height: 72px;
}

.datazen-decorative-title.type-free .datazen-subtitle {
  position: absolute;
  left: 285px;
  bottom: 0;
}
/* Background section */

.background-section {
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

/* dopacjenta UNIKALNE */

.disabled {
  display: none !important;
}

/* blok do kontaktu */

.contact-content {
  font-family: "figtree";
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.contact-title {
  font-size: 16px;
  color: var(--global--dark);
  line-height: 20px;
  font-weight: 500;
  flex: 0 0 100%;
}

.contact-phone, .contact-email {
  color: var(--global--blue);
  font-size: 18px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}

.contact-phone::before, .contact-email::before {
  content: "";
  left: 0;
  top: -3px;
  position: absolute;
  width: 28px;
  height: 28px;
}

.contact-phone::before {
background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='14' cy='14' r='14' fill='%233A5FD2'/%3E%3Cpath d='M9.71556 11.4622L15.4969 17.2044C16.1164 16.4871 20.0391 12.2818 22 18.0258C22 18.0258 21.7938 21 17.5609 21C14.568 21 11.4711 17.4107 9.30311 15.3591C7.44533 13.6151 6 11.3591 6 9.30756C6 5.10311 8.89067 5 8.89067 5C15.4969 7.256 9.71644 11.4622 9.71644 11.4622' fill='white'/%3E%3C/svg%3E%0A");
}

.contact-email::before {
background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='14' cy='14' r='14' fill='%233A5FD2'/%3E%3Cpath d='M21 8H7V9.80095L14 13.3328L21 9.80031V8Z' fill='white'/%3E%3Cpath d='M21 11.2246L14 14.7571L7 11.2252V19.4536H21V11.2246Z' fill='white'/%3E%3C/svg%3E%0A");
}

#esg-proof {
  background-size: 1100px;
  background-position: center;
}

.esg-eco-variant {
  padding-top: 108px !important;
}

.esg-eco-variant .icon-wrapper {
  position: absolute;
  top: -72px;
  margin: 0;
}

.esg-eco-middle {
  text-align: center;
  padding: 100px 40px;
  color: #42564A;
  font-size: 16px;
  line-height: 26px;
}

/* kontakt */

.contact-box-contact-page {
  gap: 28px;
}

.contact-box-contact-page .contact-icon {
  background: var(--global--main-lighter-color);
  padding: 20px;
  border-radius: 15px;
}

.contact-box-contact-page .contact-phone, .contact-box-contact-page .contact-email {
  font-size: 26px;
}

.datazen-contact-icon path {
  fill: #a1d0b6;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-text, .form-message .wpcf7-textarea {
  border: 1px solid #C3D8CE;
  border-radius: 5px;

  background: #fff;
  width: 100%;
  color: #778780;
  padding: 16px;
}

.wpcf7-text {
  height: 44px;
}

.form-message {
  padding: 0 20px;
  margin: 16px 0 24px;
}

.form-message .wpcf7-textarea {
  height: 160px;
}

.wpcf7-form .dz-system-columns label,
.wpcf7-form .form-message label {
  font-family: "figtree";
  color: var(--global--dark);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  width: 100%;
  display: block;
}

.wpcf7-list-item {
  margin: 0;
  padding: 0 20px;
  font-size: 13px;
  line-height: 19px;
}

.contact-el {
  padding: 40px;
  border-radius: 45px;
}

.wpcf7-submit {
  color: var(--global--dark);
  background-color: var(--global--tertiary-color);
  padding: 15px 38px 15px 38px;
  font-size: 18px;
  border-radius: 50px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: "figtree";
  font-weight: 600;
  transition: all 0.3s ease;
  float: right;
  cursor: pointer;
}

.wpcf7-submit:hover {
  background-color: var(--global--dark-green);
  color: #fff;
}

/* boxy */

.datazen-box.full {
  border-radius: 25px;
  padding: 36px;
}

.datazen-box.full > p:last-child {
  margin-bottom: 0;
}

.datazen-box.full.has-shadow {
  box-shadow: 0 16px 80px -30px rgba(66, 102, 85, 0.6);
}

.datazen-box.full.box-centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
}

.datazen-box {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #fff;
}

.datazen-box.boxed {
  background-color: transparent !important;
  position: relative;
  padding: 16px 12px 18px 12px;
  height: 100%;
  max-width: 288px;
  /* clip-path: polygon(120px 0%, 100% 0, 100% 100%, 0 100%, 0% 140px); */
}

.datazen-box.boxed > * {
  z-index: 1;
  position: relative;
}

.datazen-box.boxed::after, .datazen-product-category::after {
  background-image: url("data:image/svg+xml,%3Csvg width='283' height='408' viewBox='0 0 283 408' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M75.2033 9.29067L5.5522 95.5171C1.95963 99.9646 0 105.509 0 111.226V383C0 396.807 11.1929 408 25 408H258C271.807 408 283 396.807 283 383V25C283 11.1929 271.807 0 258 0H94.6511C87.0978 0 79.9495 3.41492 75.2033 9.29067Z' fill='%232E2A27'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: left top;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0px;
  z-index: -1;
  content: "";
  border-radius: 0 25px 25px 25px;
}

.datazen-box.boxed::before, .datazen-product-category::before {
  background-image: url("data:image/svg+xml,%3Csvg width='277' height='402' viewBox='0 0 277 402' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M74.9221 8.21312L4.8561 95.3411C1.71348 99.249 0.000258971 104.113 0.000254611 109.128L1.91259e-05 380C8.56297e-06 392.15 9.84974 402 22 402H255C267.15 402 277 392.15 277 380L277 22C277 9.84974 267.15 0 255 0H92.0662C85.4026 0 79.098 3.02027 74.9221 8.21312Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: left top;
  background-size: cover;
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 2px;
  left: 2px;
  z-index: 0;
  content: "";
  border-radius: 0 24px 24px 24px;
}

.datazen-box.boxed .has-small-font-size {
  font-family: "figtree";
  line-height: 16px;
  letter-spacing: .3px;
  color: #59524D;
  font-weight: 600;
}

.datazen-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: absolute;
  bottom: 12px;
  right: 12px;
  justify-content: end;
  max-width: 180px;
}

.datazen-tag {
  background: var(--global--main-color);
  color: #fff;
  font-size: 14px;
  letter-spacing: .5px;
  font-weight: 700;
  border-radius: 50px;
  padding: 3px 12px;
  font-family: "figtree";
}

/* .datazen-box.boxed::after {
  background: var(--global--dark);
  content: "";
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  position: absolute;
  border-radius: 40px;
  bottom: -5px;
  left: 3px;
  z-index: -1;
} */

.box-herosection {
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  padding: 28px 36px 0 36px;
  height: 100%;
}

.box-centered.box-narrow {
  max-width: 340px;
}

.datazen-box-title {
  color: var(--global--dark);
}

.datazen-box-title.title-medium {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
}

.datazen-box-title.title-small {
  font-size: 20px;
  font-weight: 600;
  font-family: "figtree";
  line-height: 22px;
  margin-bottom: 16px;
}

.icon-wrapper {
  margin-bottom: 14px;
}

.datazen-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease
}

.datazen-icon.var1 {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='24' viewBox='0 0 20 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0644 0.25C12.4794 0.250073 14.4462 2.23174 14.4462 4.65039V5.66406H18.3984L18.5448 5.67871C18.8761 5.74447 19.1305 6.02836 19.1474 6.37793L19.8759 21.6406L19.874 21.9092C19.8363 22.5201 19.5607 23.0201 19.0663 23.3428C18.5685 23.6676 17.9407 23.75 17.374 23.75H2.75481C2.18803 23.75 1.56028 23.6676 1.06243 23.3428C0.497438 22.974 0.217502 22.3737 0.252857 21.6406L0.981372 6.37793L1.00286 6.23242C1.08435 5.90467 1.38039 5.6642 1.7304 5.66406H4.84368V7.16406H2.44524L1.7509 21.7119C1.7435 21.865 1.7699 21.9461 1.78801 21.9844C1.80428 22.0186 1.8289 22.0513 1.88176 22.0859C2.01367 22.172 2.28722 22.25 2.75481 22.25H17.374C17.8415 22.25 18.1151 22.172 18.247 22.0859C18.2999 22.0513 18.3255 22.0187 18.3417 21.9844C18.3598 21.946 18.3852 21.8646 18.3779 21.7119L17.6835 7.16406H14.4462V8.64062H12.9462V4.65039C12.9462 3.05333 11.6442 1.75007 10.0644 1.75C8.48394 1.75018 7.18157 3.05339 7.18157 4.65039V5.66406H12.1103V7.16406H7.18157V8.64062H5.68157V4.65039C5.68157 2.2318 7.6487 0.250177 10.0644 0.25Z' fill='white'/%3E%3Cpath d='M17.2734 20.5352H2.8554V19.0352H17.2734V20.5352Z' fill='white'/%3E%3C/svg%3E%0A");
}

.datazen-icon.var2 {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='22' viewBox='0 0 21 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 3.38086C18.9999 2.34495 18.1536 1.5 17.1299 1.5H3.36914C2.34652 1.5 1.50014 2.34478 1.5 3.38086V12.6074C1.5 13.6442 2.34653 14.4893 3.36914 14.4893H4.64746C5.0616 14.4893 5.39735 14.8251 5.39746 15.2393V18.7236L8.80664 14.751L8.86328 14.6924C9.00152 14.5629 9.18453 14.4893 9.37598 14.4893H17.1299C18.1536 14.4893 19 13.644 19 12.6074V3.38086ZM20.5 12.6074C20.5 14.4661 18.9884 15.9893 17.1299 15.9893H9.7207L5.21777 21.2383C5.01351 21.4764 4.68289 21.5619 4.38867 21.4531C4.0944 21.3442 3.89849 21.0638 3.89844 20.75L3.89746 15.9893H3.36914C1.5114 15.9893 0 14.4659 0 12.6074V3.38086C0.000138055 1.5229 1.51157 0 3.36914 0H17.1299C18.9882 0 20.4999 1.52272 20.5 3.38086V12.6074Z' fill='white'/%3E%3C/svg%3E%0A");
}

.datazen-icon.var3 {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='18' viewBox='0 0 20 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2412 0.072664C10.5398 -0.0637373 10.8883 -0.00484255 11.1299 0.221914L19.3799 7.96677C19.5519 8.12823 19.6504 8.35702 19.6504 8.59705C19.6504 8.83707 19.5519 9.06586 19.3799 9.22732L11.1299 16.9722C10.8883 17.1989 10.5398 17.2578 10.2412 17.1214C9.9426 16.985 9.75 16.6791 9.75 16.3419V12.7821C7.55136 12.854 6.04795 13.2204 4.87305 13.8178C3.55961 14.4856 2.5755 15.4814 1.46289 16.8824C1.24191 17.1604 0.875851 17.2646 0.547852 17.1436C0.219669 17.0224 0 16.7018 0 16.3419C0 13.5212 0.47149 10.5415 2.07031 8.25014C3.59519 6.065 6.05589 4.63068 9.75 4.44629V0.852192C9.75 0.514996 9.9426 0.209093 10.2412 0.072664ZM11.4004 5.27826C11.4002 5.74857 11.0307 6.12938 10.5752 6.12938C6.83715 6.12938 4.67474 7.43293 3.40918 9.24648C2.49391 10.5582 1.99705 12.2092 1.78223 14.0033C2.47951 13.3274 3.24078 12.7485 4.14453 12.289C5.76939 11.4629 7.77607 11.0647 10.5752 11.0647C11.0307 11.0647 11.4002 11.4455 11.4004 11.9158V14.4158L17.5986 8.59705L11.4004 2.77731V5.27826Z' fill='white'/%3E%3C/svg%3E%0A");
}

.datazen-box.check-icon-box {
  padding-top: 32px;
}

.datazen-box.check-icon-box::before {
  content: "";
  position: absolute;
  background-color: #fcece8;
  border-radius: 8px;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.6485 0.838868C15.8736 1.05566 16 1.34966 16 1.65621C16 1.96276 15.8736 2.25676 15.6485 2.47356L6.64917 11.1387C6.53024 11.2533 6.38904 11.3441 6.23364 11.4061C6.07824 11.4681 5.91168 11.5 5.74347 11.5C5.57526 11.5 5.4087 11.4681 5.2533 11.4061C5.0979 11.3441 4.95671 11.2533 4.83778 11.1387L0.366545 6.83427C0.251871 6.72763 0.160402 6.60006 0.0974773 6.45901C0.0345522 6.31797 0.00143067 6.16627 4.53326e-05 6.01276C-0.00134 5.85926 0.0290387 5.70703 0.0894086 5.56495C0.149779 5.42288 0.238931 5.2938 0.351663 5.18525C0.464396 5.0767 0.598451 4.99086 0.746007 4.93273C0.893563 4.87461 1.05166 4.84535 1.21109 4.84669C1.37051 4.84802 1.52806 4.87991 1.67454 4.9405C1.82103 5.00109 1.95351 5.08916 2.06427 5.19958L5.74307 8.74179L13.9499 0.838868C14.0614 0.731438 14.1938 0.646216 14.3396 0.588072C14.4853 0.529927 14.6415 0.5 14.7992 0.5C14.9569 0.5 15.1131 0.529927 15.2589 0.588072C15.4046 0.646216 15.537 0.731438 15.6485 0.838868Z' fill='%23e73f19'/%3E%3C/svg%3E");
}

/* box product category */

.datazen-product-category {
  position: relative;
  width: 228px;
}

.datazen-product-category-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0 15px 20px 20px;
  margin: 0 4px 0px 2px;
  padding-bottom: 4px;
}

.product-category-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  margin-bottom: 16px;
}

.dz-cat-product-category-title {
  font-size: 18px;
  padding: 0 12px;
  text-align: center;
}

.dz-cat-btn {
  justify-content: center;
  padding: 7px 30px 7px 30px;
  margin: 0 12px;
  position: relative;
}

.dz-cat-product-category-count {
  background: var(--global--main-lighter-color);
  padding: 30px 12px 12px 12px;
  text-align: center;
  color: #7C8E86;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .3px;
  margin-top: -19px;
  border-radius: 0 0 14px 14px;
  line-height: 14px;
}

.datazen-product-category::after,
.datazen-product-category::before {
  border-radius: 0 15px 15px 15px;
}

/* download block */

.wp-block-datazen-download-document {
  border: 2px solid #2e2a27;
  display: block;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-radius: 15px;
}

.download-image {
  padding: 12px;
}

.download-image img {
  border-radius: 6px;
}

.download-body {
  background-color: var(--global--main-lighter-color);
  padding: 38px 12px 12px;
  text-align: center;
  margin-top: -36px;
  border-radius: 0 0 10px 10px;
}

.wp-block-datazen-download-document:hover .datazen-button {
background-color: color-mix(in srgb, var(--global--main-color), black 20%);
}

/* listy */

.dopacjenta-list, .dopacjenta-list-blue {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  flex-direction: column;
}

.dopacjenta-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.02 8.26L4.515 6.755C4.38666 6.62666 4.22333 6.5625 4.025 6.5625C3.82666 6.5625 3.66333 6.62666 3.535 6.755C3.40667 6.88333 3.3425 7.04667 3.3425 7.245C3.3425 7.44333 3.40667 7.60666 3.535 7.735L5.53 9.73C5.67 9.87 5.83333 9.94 6.02 9.94C6.20666 9.94 6.37 9.87 6.51 9.73L10.465 5.775C10.5933 5.64667 10.6575 5.48333 10.6575 5.285C10.6575 5.08667 10.5933 4.92333 10.465 4.795C10.3367 4.66667 10.1733 4.6025 9.97499 4.6025C9.77666 4.6025 9.61333 4.66667 9.48499 4.795L6.02 8.26ZM7 14C6.03166 14 5.12166 13.8161 4.27 13.4484C3.41833 13.0807 2.6775 12.582 2.0475 11.9525C1.4175 11.323 0.918867 10.5821 0.551601 9.73C0.184334 8.87786 0.000467552 7.96786 8.86075e-07 7C-0.00046578 6.03213 0.183401 5.12213 0.551601 4.27C0.9198 3.41787 1.41843 2.67703 2.0475 2.0475C2.67657 1.41797 3.4174 0.919333 4.27 0.5516C5.1226 0.183867 6.0326 0 7 0C7.9674 0 8.87739 0.183867 9.72999 0.5516C10.5826 0.919333 11.3234 1.41797 11.9525 2.0475C12.5816 2.67703 13.0804 3.41787 13.4491 4.27C13.8178 5.12213 14.0014 6.03213 14 7C13.9986 7.96786 13.8147 8.87786 13.4484 9.73C13.0821 10.5821 12.5834 11.323 11.9525 11.9525C11.3216 12.582 10.5807 13.0809 9.72999 13.4491C8.87926 13.8173 7.96926 14.0009 7 14Z' fill='%231C7939'/%3E%3C/svg%3E%0A");
  left: 0;
  top: 1px;
}

.dopacjenta-list li {
  position: relative;
  padding-left: 24px;
  line-height: 20px;
  margin-bottom: 12px;
  font-size: 15px;
}

.dopacjenta-list-blue li {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.dopacjenta-list-blue li:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.6 11.8L6.45 9.65C6.26666 9.46666 6.03333 9.375 5.75 9.375C5.46666 9.375 5.23333 9.46666 5.05 9.65C4.86666 9.83333 4.775 10.0667 4.775 10.35C4.775 10.6333 4.86666 10.8667 5.05 11.05L7.9 13.9C8.1 14.1 8.33333 14.2 8.6 14.2C8.86666 14.2 9.1 14.1 9.3 13.9L14.95 8.25C15.1333 8.06666 15.225 7.83333 15.225 7.55C15.225 7.26666 15.1333 7.03333 14.95 6.85C14.7667 6.66667 14.5333 6.575 14.25 6.575C13.9667 6.575 13.7333 6.66667 13.55 6.85L8.6 11.8ZM9.99999 20C8.61666 20 7.31666 19.7373 6.1 19.212C4.88333 18.6867 3.825 17.9743 2.925 17.075C2.025 16.1757 1.31267 15.1173 0.788001 13.9C0.263335 12.6827 0.000667932 11.3827 1.26582e-06 10C-0.0006654 8.61733 0.262001 7.31733 0.788001 6.1C1.314 4.88267 2.02633 3.82433 2.925 2.925C3.82367 2.02567 4.882 1.31333 6.1 0.788C7.318 0.262667 8.618 0 9.99999 0C11.382 0 12.682 0.262667 13.9 0.788C15.118 1.31333 16.1763 2.02567 17.075 2.925C17.9737 3.82433 18.6863 4.88267 19.213 6.1C19.7397 7.31733 20.002 8.61733 20 10C19.998 11.3827 19.7353 12.6827 19.212 13.9C18.6887 15.1173 17.9763 16.1757 17.075 17.075C16.1737 17.9743 15.1153 18.687 13.9 19.213C12.6847 19.739 11.3847 20.0013 9.99999 20Z' fill='%233A5FD2'/%3E%3C/svg%3E%0A");
}

.dopacjenta-list.has-small-font-size li {
  font-family: "figtree";
  font-size: 14px;
  font-weight: 600;
  color: #59524D;
  letter-spacing: .3px;
  line-height: 16px;
  margin-bottom: 10px;
}

.dopacjenta-list.block-group-two {
  gap: 16px 32px
}

.dopacjenta-list.block-group-two li {
  color: var(--global--dark);
  font-weight: 500;
}

.circle-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.circle-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 12px;
}

 .circle-list li::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50px;
  position: absolute;
  background: #1c7939;
  left: 4px;
  top: 4px;
}

.circle-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50px;
  position: absolute;
  background: #9EE37D;
  left: 0;
  top: 0px;
}

/* heroscene */

.marker-headline strong {
  position: relative;
  z-index: 2;
}

.marker-headline strong::after {
  background-image: url('assets/images/marker.webp');
  background-repeat: no-repeat;
  content: "";
  left: -10px;
  top: 8px;
  position: absolute;
  width: calc(100% + 12px);
  height: 54px;
  z-index: -1;
  min-width: 166px;
  background-size: 100% 54px;
  background-position: center;
}

.description-heroscene {
  max-width: 440px;
  color: var(--global--dark);
}

/* product search */

.wp-block-search__inside-wrapper {
  background: #fff;
  border-radius: 50px;
  border-width: 2px 4px 4px 2px;
  border-color: var(--global--dark-green);
  padding: 14px 8px 14px 36px;
}

.wp-block-search__input {
  font-size: 16px;
  color: #7C8E86;
  padding: 5px 0;
  border-right: 1px solid var(--global--dark);
}

.wp-block-search__button {
  position: relative;
  border: 0;
  color: var(--global--dark);
  font-family: "figtree";
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 76px 0 0;
  margin-left: 16px;
  transition: all .3s ease-in-out;
}

.wp-block-search__button::after {
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='26' cy='26' r='26' fill='%23FCA804'/%3E%3Cpath d='M32.6257 25.3114C32.6257 26.9249 32.1019 28.4153 31.2194 29.6245L35.6704 34.0781C36.1099 34.5175 36.1099 35.2311 35.6704 35.6705C35.2309 36.1098 34.5172 36.1098 34.0777 35.6705L29.6267 31.2168C28.4173 32.1026 26.9266 32.6229 25.3129 32.6229C21.2732 32.6229 18 29.3503 18 25.3114C18 21.2726 21.2732 18 25.3129 18C29.3525 18 32.6257 21.2726 32.6257 25.3114ZM25.3129 30.3732C25.9777 30.3732 26.636 30.2423 27.2503 29.9879C27.8645 29.7335 28.4226 29.3607 28.8928 28.8906C29.3629 28.4206 29.7358 27.8626 29.9902 27.2485C30.2447 26.6344 30.3756 25.9761 30.3756 25.3114C30.3756 24.6467 30.2447 23.9885 29.9902 23.3744C29.7358 22.7603 29.3629 22.2023 28.8928 21.7322C28.4226 21.2622 27.8645 20.8894 27.2503 20.635C26.636 20.3806 25.9777 20.2497 25.3129 20.2497C24.648 20.2497 23.9897 20.3806 23.3754 20.635C22.7612 20.8894 22.2031 21.2622 21.733 21.7322C21.2628 22.2023 20.8899 22.7603 20.6355 23.3744C20.3811 23.9885 20.2501 24.6467 20.2501 25.3114C20.2501 25.9761 20.3811 26.6344 20.6355 27.2485C20.8899 27.8626 21.2628 28.4206 21.733 28.8906C22.2031 29.3607 22.7612 29.7335 23.3754 29.9879C23.9897 30.2423 24.648 30.3732 25.3129 30.3732Z' fill='%232E2A27'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
  right: -2px;
  transition: all .3s ease-in-out;
  width: 52px;
  height: 52px;
  top: -9px;
}

.wp-block-search__button:hover::after {
  animation: zoomPulse 0.25s ease-in-out;
}

.wp-block-search__button:hover {
  color: var(--global--main-color);
}

.home-search-tags {
  color: var(--global--dark-green);
  margin: 24px 0 0 0px;
  padding-left: 32px;
}

/* images */

.wp-block-datazen-image.radius img {
  border-radius: 40px;
  position: relative;
  z-index: 2;
}

.wp-block-datazen-image.radius {
  position: relative;
  display: inline-block;
}

.wp-block-datazen-image.radius::after {
  content: "";
  background-color: var(--global--main-color);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -18px;
  right: -18px;
  z-index: -1;
  border-radius: 49px;
}

/* double image */

.double-image-secondary {
  position: absolute;
}

/* review google */

.wp-block-dataze-google-review {
  text-align: right;
}

.review-top-el {
  display: flex;
  justify-content: end;
  gap: 32px;
  margin-bottom: 4px;
}

.review-rating {
  display: flex;
  gap: 10px;
}

.review-rating .stars {
  color: var(--global--dark-green);
  font-size: 20px;
}

.rating-score {
  font-size: 28px;
  font-weight: 700;
  color: var(--global--dark-green);
  font-family: "figtree";
}

.wp-block-dataze-google-review .review-text {
  line-height: 22px;
  font-size: 16px;
  color: var(--global--dark-green);
  font-style: italic;
  max-width: 400px;
  opacity: .7;
}

.review-subtitle {
  font-size: 14px;
  position: relative;
  color: #fff;
  transition: all .3s ease-in-out;
}

.review-subtitle::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: -2px;
  position: absolute;
  left: 0;
  transition: all .3s ease-in-out;
}

.review-subtitle:hover {
  color: var(--global--dark-green);
}

.review-subtitle:hover::after {
  background-color: var(--global--dark-green);
}

/* testimonial */

.wp-block-datazen-testimonial {
  display: flex;
  gap: 32px;
  margin-bottom: 68px;
}

.wp-block-datazen-testimonial.position-review-right {
  flex-direction: row-reverse;
}

.quote-logo {
  flex: 0 0 280px;
  background: #F4F7F5;
  border-radius: 25px;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-photo {
  max-width: 200px;
  height: auto;
}

.quote-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F9FDFB;
  border-radius: 25px;
  position: relative;
  border: 1px solid #F4F8F6;
  overflow: hidden;
  padding: 32px 36px;
  width: 100%;
}

.quote-icon {
  position: absolute;
  height: 160px;
  right: 0;
  top: 0;
}

.quote-icon svg {
  width: 160px;
  height: auto;
}

.review-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.review-name {
  font-weight: 600;
  font-size: 24px;
  font-family: "figtree";
  color: var(--global--dark);
}

.review-date {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

.review-text {
  font-size: 16px;
  line-height: 21px;
  position: relative;
  font-family: "figtree";
  color: #5E6A61;
  font-weight: 500;
}

.review-stars {
  background: url('assets/images/stars.webp') no-repeat center;
  width: 100px;
  height: 20px;
  flex: 0 0 100px;
}

/* small offer block */

.datazen-small-offer-block.color-main {
  background-color: #fff;
}

.datazen-small-offer-block {
  border-radius: 5px 50px 50px 5px;
  position: relative;
  padding-left: 105px;
  margin-bottom: 32px;
  max-width: 350px;
}

.small-offer-block-image {
  position: absolute;
  left: -6px;
  top: -8px;
}

.small-offer-block-container {
  color: #52605A;
  font-size: 13px;
  padding: 5px 32px 5px 20px;
  font-weight: 600;
  line-height: 16px;
}

.small-offer-block-title {
  margin-bottom: 4px;
}

.small-offer-block-container p {
  margin: 0;
}

/* steps block */

.datazen-steps-block {
  position: relative;
}

.steps-container {
  position: absolute;
  background: var(--global--main-lighter-color);
  border-radius: 10px 150px 150px 10px;
  width: calc(100% - 32px);
  padding: 24px 0 24px 24px;
  bottom: 28px;
  left: 32px;
  height: 80px;
  display: flex;
  align-items: center;
}

.steps-number {
  font-size: 24px;
  background: var(--global--dark-green);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--global--main-lighter-color);
  margin: -82px 0 0 0;
  position: absolute;
}

.as-h-4.steps-title {
  margin: 0;
}

/* Ogólne */

.margin-btn-none {
  margin-bottom: 0px;
}

.padded-right {
  padding-right: 104px;
}

.padded-left {
padding-left: 104px;
}

.padded-right-small {
padding-right: 44px;
}

.padded-left-small {
padding-left: 44px;
}

.homepage-search-sct {
  margin-top: -40px;
}

.herosection-el {
  border-radius: 35px;
  margin: 0 54px;
  z-index: 1;
}

/* blog */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px 32px;
  margin-bottom: 40px;
}

.blog-grid article {
  flex: 0 1 33.333333%;
  position: relative;
}

.blog-grid .entry-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}

.blog-grid .posted-on {
  position: absolute;
  background: var(--global--dark);
  color: #fff;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  line-height: 12px;
  left: -20px;
  top: 20px;
}

.blog-grid img {
  border-radius: 28px;
}

.blog-grid figure {
  margin-bottom: 16px;
}

.recent-post-categories {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  color: #afafaf;
  font-size: 13px;
}

.blog-grid .datazen-button {
  float: right;
}

.blog-sidebar.dz-system-column.three-twelve {
  padding-left: 32px;
}

.wp-block-latest-posts li {
  display: flex;
  gap: 16px;
  position: relative;
  margin-bottom: 16px;
}

.wp-block-latest-posts__featured-image {
  flex: 0 0 80px;
  border-radius: 10px;
  overflow: hidden;
}

.wp-block-latest-posts__featured-image img {
  height: 100% !important;
}

.wp-block-latest-posts .wp-block-latest-posts__post-title {
  font-size: 14px;
  padding-top: 14px;
  font-weight: 600;
  color: #1f1f1f;
}

.wp-block-latest-posts .wp-block-latest-posts__post-date {
  position: absolute;
  top: 0;
  left: 96px;
  font-size: 12px;
  color: #f29b82;
  line-height: 12px;
}

.single-post-featured-image {
  border-radius: 40px;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin: 40px 0;
  position: relative;
}

.single-post-featured-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--global--dark);
  opacity: .7;
  left: 0;
  top: 0;
  border-radius: 40px;
}

.single-post-featured-image > * {
  z-index: 2;
  position: relative;
}

.single-post-date {
  display: inline-block;
  background: var(--global--main-color);
  color: #fff;
  border-radius: 8px;
  padding: 2px 16px;
  margin-bottom: 8px;
}

.single-post-title {
  color: #fff;
  margin: 0 auto;
  max-width: 90%;
}

.navigation.pagination {
  margin-bottom: 40px;
}

.navigation.pagination .page-numbers {
  width: auto !important;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 4px;
}

.page-numbers .svg-icon {
  width: 18px;
}

/* karuzela zdjec */

.karuzela-zdjec {
  overflow: hidden;
  position: relative;
}

.karuzela-navigation {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: calc(50% - 36px);
}

.karuzela-wrapper {
  position: relative;
}

.karuzela-zdjec .karuzela-wrapper,
.karuzela-zdjec .datazen-carousel-prev, .datazen-carousel-next {
  z-index: 1;
}

.karuzela-zdjec.columns-3 .karuzela-item {
  height: 240px;
}

.karuzela-item {
  flex: 0 0 auto;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding: 0 12px;
}

.karuzela-item img {
  height: auto;
  width: 100%;
  position: absolute;
  left: 0;
  max-width: unset;
}

.karuzela-item-holder {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.margined-carousel-navigation {
  margin: 0 16px;
}

.datazen-carousel-prev,
.datazen-carousel-next {
  position: relative;
  width: 58px;
  height: 58px;
  background: #E5E5E5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* ukrywa rozlewające się tło */
  z-index: 1;
  border-radius: 12px;
}

.datazen-carousel-prev::after,
.datazen-carousel-next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--global--main-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.datazen-carousel-prev:hover svg path,
.datazen-carousel-next:hover svg path {
  fill: #fff;
}

.datazen-carousel-prev:hover::after,
.datazen-carousel-next:hover::after {
  transform: scaleX(1);
}

.datazen-carousel-prev > *,
.datazen-carousel-next > * {
  position: relative;
  z-index: 1;
}

/* toggle */

.datazen-toggle {
  margin-bottom: 24px;
}

.datazen-toggle-title {
  font-size: 16px;
  color: var(--global--dark);
  font-weight: 600;
}

.datazen-toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px
}

.datazen-toggle-arrow {
  border-radius: 8px;
  background: #E5E5E5;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background-color .25s ease;
  transform-origin: center;
  flex: 0 0 28px;
  transform: rotate(180deg);
}

.datazen-toggle.active .datazen-toggle-arrow {
  transform: rotate(0deg);
  background-color: var(--global--main-color);
}

.datazen-toggle.active .datazen-toggle-arrow path {
  stroke: #fff;
}

/* pages */

.page-header {
  background-image: url('assets/images/pattern-dopacjenta.webp');
  background-color: var(--global--main-lighter-color);
  background-repeat: no-repeat;
  border-radius: 35px;
  margin: 0 54px;
  padding: 52px 0;
  margin-bottom: 80px;
  background-position: center -12px;
  background-size: cover;
}

.page-title {
  color: var(--global--dark);
  margin: 0;
}

.breadcrumbs {
  max-width: unset;
  background: #F2FAFF;
  padding: 12px 0;
  margin-bottom: 52px;
}

.breadcrumbs .items {
  max-width: 1216px;
  margin: 0 auto;
  color: #7BA3BC;
  font-size: 12px;
}

.breadcrumbs .items .item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs a {
  color: #7BA3BC;
}

.breadcrumbs .item:not(:last-child):after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 18px;
    content: '>';
    margin: 0 10px;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}

/* SHOP */

.woocommerce .woocommerce-breadcrumb {
  margin: 0;
  font-size: 15px;
  font-family: "figtree";
  color: var(--global--dark);
}

.shop-breadcrumbs {
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrumb-icon {
  background: var(--global--blue);
  border-radius: 50px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.shop-category-navigation {
  background-color: var(--global--secondary-color);
  border-radius: 10px;
  max-width: 1010px;
  margin: 24px auto -94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 52px;
}

.shop-cat-nav-icon {
  position: relative;
}

.shop-cat-nav-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-cat-icon {
  position: relative;
  z-index: 1;
}

.nav-cat-bg {
  position: absolute;
  bottom: -2px;
  right: -8px;
}

.shop-cat-nav-title {
  color: #6D8E7C;
  margin: 0;
}

.nav-cat-icon path, .shop-cat-nav-title {
  transition: all .3s ease-in-out;
}

.active-nav-cat .nav-cat-icon path,
.shop-cat-nav-group:hover .nav-cat-icon path {
  fill: var(--global--main-color)
}

.active-nav-cat .nav-cat-bg path,
.shop-cat-nav-group:hover .nav-cat-bg path {
  fill: #12502E;
}

.active-nav-cat .shop-cat-nav-title,
.shop-cat-nav-group:hover .shop-cat-nav-title {
  color: #fff;
}

.wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list__input-wrapper::before {
  background: #fff;
}

.wc-block-product-filters__overlay-content input[type="checkbox"].wc-block-product-filter-checkbox-list__input {
  border: 1px solid #44504D;
  height: 12px;
  width: 12px;
}

.wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list__text-wrapper {
  color: #7E8785;
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
}

.wc-block-product-filters__overlay-content input[type="checkbox"].wc-block-product-filter-checkbox-list__input:checked {
  border-color: var(--global--blue);
  background-color: var(--global--blue);
}

.wc-block-product-filters__overlay-content svg.wc-block-product-filter-checkbox-list__mark {
color: #fff;
  height: 13px;
  padding: 2px;
}

.wc-block-product-filters__overlay-content svg.wc-block-product-filter-checkbox-list__mark path {
  stroke-width: 2px;
}

.wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list__label {
  margin-bottom: 10px !important;
}

.wc-block-product-filter-checkbox-list__item {
  position: relative;
  display: block;
}

.category-filter-tree .wc-block-product-filter-checkbox-list__show-more {
  display: none
}

.filters-toggle-arrow {
  font-size: 20px;
  font-weight: 500;
  width: 14px;
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 0;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.filters-toggle-arrow:hover {
  color: var(--global--main-color);
}

.category-children {
  margin-left: 18px;
}

.category-children .category-children {
  background-color: #F4F7F6;
  border-radius: 8px;
  padding: 4px 0 0px 8px;
  margin-bottom: 8px;
}

.category-children .category-children .wc-block-product-filter-checkbox-list__text {
  font-size: 13px;
}

.has-children > label .wc-block-product-filter-checkbox-list__text {
  color: var(--global--dark);
}

.has-depth-2.has-children {
  background-color: #fff;
  margin-left: -8px;
  padding: 8px 0 8px 8px;
}

.wc-block-product-filter-checkbox-list__label {
  align-items: start;
}

h5.wp-block-heading {
  margin-bottom: 16px !important;
}

.wc-block-product-filters__overlay-content {
  gap: 34px !important;
}

.woocommerce .woocommerce-result-count {
  font-size: 13px;
  color: #8DA69A;
  margin: 10px 0 0 0;
  float: left;
}

.woocommerce-ordering {
  background-color: #F3FAF7;
  border-radius: 5px;
  border: 1px solid #E5F0EB;
  padding: 12px 14px;
  display: flex;
  float: right;
}

.woocommerce .woocommerce-ordering select {
  font-size: 13px;
  color: #8DA69A;
}

.shop-grid .products.columns-3::before, .shop-grid .products.columns-3::after {
  display: none;
}

.shop-grid .products.columns-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.products.columns-3 li.entry.product {
  width: 100%;
  border: 1px solid var(--global--main-lighter-color);
  border-radius: 10px;
  overflow: hidden;
}

.product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card-details {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.product-link img {
  border-bottom: 1px solid var(--global--main-lighter-color);
  margin-bottom: 8px !important;
  height: auto !important;
}

.shop-grid ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 0px 16px;
  margin-bottom: 0px;
}

.product-stock-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  top: 12px;
  right: 16px;
}

.product-stock-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-stock-info span {
  background-color: #D5EAE1;
  border-radius: 25px;
  width: 16px;
  height: 3px;
}

.stock-low .product-stock-info span:nth-child(3) {
  background-color: #FE5F55;
}

.stock-medium .product-stock-info span:nth-child(3),
.stock-medium .product-stock-info span:nth-child(2) {
  background-color: var(--global--tertiary-color);
}

.stock-high .product-stock-info span {
  background-color: var(--global--dark-green);
}

.product-stock-label {
  color: #778780;
  font-size: 12px;
  font-weight: 500;
}

.product-card-data {
  padding: 20px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-icon {
  width: 30px;
  display: flex;
  justify-content: center;
}

.product-card-footer {
  background: var(--global--main-lighter-color);
  padding: 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 16px;
}

.product-meta.product-meta--unit {
  color: #6B977F;
  font-weight: 500;
}

.product-meta.product-meta--quantity {
  font-weight: 600;
}

.product-card-product-attr  {
  color: #515755;
  display: flex;
  gap: 18px;
  font-weight: 500;
  font-size: 12px;
}

.icon-link {
  display: flex;
  gap: 8px;
  color: var(--global--blue);
  font-family: "figtree";
  font-size: 16px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.icon-link:hover {
  color: var(--global--main-color);
}

.page-header.product-header {
  padding: 18px;
  margin: 0 0 44px 0;
  border-radius: 0;
}

.product-page.dz-system-columns {
  gap: 66px;
}

.product-gallery {
  min-width: 382px;
}

.product-detailed-data {
  display: flex;
  justify-content: space-between;
}

.product-detailed-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 44px;
}

.main-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-features .as-h-3 {
  margin-bottom: 0;
}

.main-features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 68px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 36px;
}

.feature-item::before {
  content: "+";
  position: absolute;
  color: #fff;
  background-color: var(--global--dark-green);
  width: 22px;
  height: 22px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  top: 6px;
  justify-content: center;
  border-radius: 50px;
  left: 0;
  line-height: 20px;
}

.feature-title {
  color: #65706A;
  font-size: 13px;
  line-height: 13px;
}

.feature-value {
  color: var(--global--dark);
  font-weight: 600;
  font-size: 14px;
}

.feature-value {
  color: var(--global--dark);
  font-weight: 600;
  font-size: 14px;
}

.material {
  display: flex;
  gap: 16px;
  align-items: center;
}

.material-icon {
  background: var(--global--main-lighter-color);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-attr-title {
  color: #65706A;
  font-size: 14px;
  line-height: 14px;
}

.product-attr-value {
  color: var(--global--dark);
  font-weight: 600;
  font-size: 16px;
}

.product-pdfs-list {
  display: flex;
  gap: 36px;
}

.product-pdf-link {
  display: flex;
  gap: 18px;
}

.product-pdf-name {
  font-family: "figtree";
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--global--dark);
  font-weight: 600;
  border-bottom: 1.5px solid;
  line-height: 20px;
}

.product-detailed-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #F3FAF7;
  border: 1px solid var(--global--main-lighter-color);
  border-radius: 10px;
  padding: 24px 18px;
  width: 260px;
}

.product-attr-icon {
  width: 46px;
  display: flex;
  justify-content: center;
}

.product-attr-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.product-gallery .flex-viewport {
  border: 1px solid var(--global--main-lighter-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
}

.product-gallery .woocommerce-product-gallery {
  position: relative;
}

.product-industries {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  top: 248px;
}

.industry-item {
  color: #849E91;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-gallery .flex-control-thumbs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-gallery .flex-control-thumbs li {
  border: 1px solid var(--global--main-lighter-color);
  border-radius: 10px;
  overflow: hidden;
  width: 33.33%;
  flex-shrink: 0;
}

.single-product .stock.in-stock, .single-product .price {
  display: none;
}

.product-add-block {
  background-image: url('assets/images/pattern-dopacjenta.webp');
  background-color: #F3FAF7;
  background-repeat: no-repeat;
  padding: 10px 0;
}

.product-add-block .container {
  display: flex;
  justify-content: end;
}

.product-add-block .cart {
  background: #E0F0EA;
  border-radius: 35px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  max-width: 768px;
  padding: 24px;
  margin-bottom: 0px !important;
}

.product-add-block .cart::before,
.product-add-block .cart::after {
  display: none !important;
}

.product-package {
  display: flex;
  gap: 12px;
  align-items: center;
    border-right: 1px solid #CAE0D8;
  padding: 32px 20px 32px 0;
  max-width: 206px;
}

.product-package .svg-icon {
  flex: 0 0 auto;
}

.product-package-package {
  font-size: 16px;
  font-weight: 600;
  color: var(--global--dark);
  line-height: 16px;
}

.product-package-quantity {
  color: var(--global--dark-green);
  font-size: 14px;
  font-weight: 600;
}

.product-package-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-quantity-block {
  margin-right: 32px;
}

.product-quantity-subtotal {
  color: #65706A;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 6px;
}

.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #CAE0D8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin: 0;
  font-family: "figtree";
}

.woocommerce .quantity.buttons_added .qty {
  width: 36px;
  height: 32px;
  text-align: center;
  border: none;
  font-size: 24px;
  font-weight: 600;
  color: var(--global--dark);
  outline: none;
  background: transparent;
  appearance: textfield; /* dla Safari */
}

.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity input[type="number"] {
  -moz-appearance: textfield;
}

/* przyciski +/- */
.quantity .plus,
.quantity .minus {
  width: 32px;
  height: 32px;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--global--dark);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity .minus {
  border-right: 1px solid #CAE0D8;
}

.quantity .plus {
  border-left: 1px solid #CAE0D8;
}

.quantity .plus:hover,
.quantity .minus:hover {
  background: #e0e0e0;
}

.quantity .plus:active,
.quantity .minus:active {
  background: #d0d0d0;
}

/* dostępność */
.quantity label.screen-reader-text {
  position: absolute !important;
  left: -9999px !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

body.woocommerce .single_add_to_cart_button {
  background-color: var(--global--tertiary-color) !important;
  border-radius: 50px;
  color: var(--global--dark) !important;
  font-family: "figtree";
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 32px 18px 38px;
  transition: all .3s ease-in-out;
}

body.woocommerce .single_add_to_cart_button svg path {
  transition: all .3s ease-in-out;
}

body.woocommerce .single_add_to_cart_button:hover svg path {
  fill: var(--global--main-lighter-color)
}

body.woocommerce .single_add_to_cart_button:hover {
  color: var(--global--main-lighter-color) !important;
  background-color: var(--global--secondary-color) !important;
}

.consultant-box-wrapper {
  background-color: var(--global--main-color);
  padding: 38px 0;
  margin-bottom: 64px;
}

.consultant-box-inner {
  position: relative;
  display: flex;
  justify-content: end;
  gap: 12px;
  padding-left: 160px;
}
.consultant-image {
  position: absolute;
  bottom: -46px;
  left: 24px;
}

.consultant-question {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.consultant-email {
  font-size: 17px;
  border-bottom: 1.5px solid;
  font-weight: 600;
}

.consultant-or {
  color: #97F0C0;
  font-size: 14px;
  font-weight: 500;
  font-family:'Inter Italic';
}

.consultant-phone {
font-size: 28px;
font-weight: 700;
}

.consultant-email, .consultant-phone {
  font-family: "figtree";
  color: var(--global--dark-green);
  transition: all .3s ease-in-out;
}

.consultant-email:hover, .consultant-phone:hover {
  color: var(--global--dark);
}

#wlasciwosci-produktu {
  margin-top: 44px;
}

.woocommerce table.shop_attributes {
  border: 0 none;
  border-collapse: separate;
  border-spacing: 0 16px;
}

.woocommerce table.shop_attributes th {
  border: 1px solid #C3D8CE;
  width: 50%;
  text-align: left;
  padding: 18px 28px;
  border-right: 0;
  border-radius: 15px 0 0 15px;
  color: var(--global--dark);
  font-weight: 600;
  font-size: 15px;
  transition: all .3 ease-in-out;
}

.woocommerce table.shop_attributes td {
border: 1px solid #C3D8CE;
border-radius: 0 15px 15px 0;
color: #5E6A61;
font-size: 15px;
font-style: normal;
padding-left: 20px;
transition: all .3 ease-in-out;
}

.woocommerce table.shop_attributes tr:nth-child(2n) td, .woocommerce table.shop_attributes tr:nth-child(2n) th {
  background-color: transparent;
}

#wlasciwosci-produktu .woocommerce-product-attributes-item:hover th,
#wlasciwosci-produktu .woocommerce-product-attributes-item:hover td {
  border-color: var(--global--dark) !important;
  border-bottom-width: 2px !important;
}

.pseudo-filter {
  border: 0;
  padding: 0;
  margin: 0 0 32px 0;
  pointer-events: none;
  font-size: 14px;
  color: #7E8785;
}

.pseudo-filter .wc-block-product-filter-checkbox-list__label {
  display: flex;
  gap: 12px;
  margin-bottom: 2px;
  font-weight: 500;
}

.shop-page-demo {
  position: relative;
}

.shop-page-button {
  position: absolute;
  bottom: 0;
  height: 226px;
  display: flex;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  align-items: end;
  justify-content: center;
  padding-bottom: 16px;
}

.woocommerce-notices-wrapper {
  background-color: var(--global--main-lighter-color);
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  max-width: var(--global--content--width);
  margin: 36px auto 0;
}

.shop_table .product-thumbnail {
  max-width: 100px;
}

.product-thumbnail img {
  max-width: 200px !important;
}

.cart-btn-order {
  display: flex;
  justify-content: center;
}

.woocommerce .shop_table a.remove {
  font-size: 26px;
  margin: 0 auto;
  width: 100%;
  transition: all .3s ease-in-out;
}

.woocommerce .shop_table a.remove:hover {
  background-color: transparent;
  color: rgb(192, 68, 36) !important;
  transform: scale(1.4);
}

.product-quantity .quantity {
  border: 0;
}

.product-quantity .quantity .minus, 
.product-quantity .quantity .plus {
  border: 0;
  background-color: var(--global--main-lighter-color);
  border-radius: 10px;
}

.product-quantity .quantity .input-text {
  font-size: 18px !important;
}

.woocommerce table.shop_table th {
  font-family: "figtree";
  color: var(--global--dark);
  font-size: 18px;
}

.woocommerce table.shop_table td {
  font-size: 14px;
  border-color: #E7F3EE;
}

.woocommerce table.shop_table {
  border: 1px solid #E7F3EE;
  border-radius: 25px;
}

.woocommerce table.shop_table td.actions button {
  border-radius: 50px;
  padding: 12px 32px !important;
  font-family: "figtree";
  font-size: 16px;
  background: #E0F0EA;
  color: #076733 !important;
  float: right;
  margin: 12px;
}

.woocommerce table.shop_table td.actions button.button:disabled[disabled] {

}

.load-moreproducts-shadow {
  display: flex;
  gap: 32px;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 32px;
  z-index: 1;
}

.shadow-product {
  border: 1px solid var(--global--main-lighter-color);
  border-radius: 10px;
  height: 130px;
  width: 100%;
}

.load-moreproducts-sct {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.load-moreproducts-gradient {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.disable-shadow-products .load-moreproducts-shadow {
  display: none;
}

#load-more-products {
  background: var(--global--dopacjenta-green);
  padding: 14px 64px;
  color: #fff;
  font-size: 18px;
  z-index: 3;
}

#load-more-products.end-list {
  background: var(--global--dark);
  opacity: 0.3;
}

.woocommerce-pagination {
  margin: 48px 0;
  display: none;
}

.woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li {
  border: 0 none;
}

.woocommerce nav.woocommerce-pagination ul,
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li span.current, .navigation.pagination .page-numbers.current {
  background: var(--global--dark-green);
  color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.navigation.pagination .page-numbers {
  font-family: "figtree";
  font-weight: 600;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--global--main-lighter-color);
  color: var(--global--dark);
  transition: all .3s ease-in-out;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span:hover,
.navigation.pagination .page-numbers:hover {
  background-color: var(--global--tertiary-color);
  color: var(--global--dark);
}

/* checkout */

.checkout-welcome {
  margin-bottom: 48px;
  max-width: 800px;
  color: #718079;
}

.checkout-welcome h2 {
  margin-bottom: 8px;
}

.checkout-wrapper {
  background: #F3FAF7;
  padding: 48px 0;
}

.checkout-data-left {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 16px 40px -10px rgba(66, 102, 85, 0.3);
}

.checkout-data-customer-fields, .checkout-data-company-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last {
  padding: 0;
  flex: 1 1 calc(50% - 16px);
  margin: 0;
}

.woocommerce form .form-row-wide {
  flex: 1 1 100%;
  padding: 0;
  margin: 0;
}

.woocommerce form .form-row label {
  font-family: "figtree";
  color: #716B66;
  font-size: 18px;
  font-weight: 500;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  border-color: #D1D9D6;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
}

.checkout-data-customer, .checkout-data-company {
  margin-bottom: 48px;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table thead,
.woocommerce-checkout-review-order-table tfoot,
.woocommerce-additional-fields h3 {
  display: none;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
  border: 0 none;
  border-radius: 0;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
  border-top: 8px solid #f3faf7;
  background: #E7F3EE;
  border-radius: 15px;
  padding: 14px 20px;
  color: #65706A;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table td .product-quantity {
  background: #B6CAC1;
  border-radius: 5px;
  padding: 2px 4px;
}

.woocommerce-checkout #payment {
  background: var(--global--dark-green);
  border-radius: 15px;
  color: #8cbfa3;
  font-size: 13px;
  line-height: 19px;
  padding: 6px 10px;
}

#place_order {
  background-color: var(--global--tertiary-color);
  color: var(--global--dark);
  padding: 15px 38px 15px 38px;
  font-size: 18px;
}

#place_order:hover {
  background-color: var(--global--blue);
  color: #fff;
}

/* szuflda koszyka */

@keyframes wc-skeleton-shimmer {
  to {
    transform: translateX(100%)
  }
}

.wc-block-mini-cart__quantity-badge {
  align-items: center;
  display: flex;
  position: relative
}

.wc-block-mini-cart__quantity-badge:empty {
  display: none
}

.wc-block-mini-cart__badge {
  align-items: center;
  border-radius: 1em;
  box-sizing: border-box;
  display: flex;
  font-size: .875em;
  font-weight: 600;
  height: 1.4285714286em;
  justify-content: center;
  left: 100%;
  margin-left: -44%;
  min-width: 1.4285714286em;
  padding: 0 .25em;
  position: absolute;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1
}

.wc-block-mini-cart__badge[hidden] {
  display: none
}

:where(.wc-block-mini-cart__badge) {
  background-color: transparent;
  color: transparent
}

.wc-block-mini-cart__badge:empty {
  opacity: 0
}

.wc-block-mini-cart__icon {
  display: block;
  height: 2em;
  margin: -.25em;
  width: 2em
}

html[dir=rtl] .wc-block-mini-cart__icon {
  transform: scaleX(-1)
}

@keyframes wc-skeleton-shimmer {
  to {
    transform: translateX(100%)
  }
}

.wc-block-mini-cart {
  display: inline-block
}

.wc-block-mini-cart__template-part,
.wp-block-woocommerce-mini-cart-contents {
  height: 100%
}

@media screen and (max-height:500px) {
  .wp-block-woocommerce-mini-cart-contents {
    height: auto
  }

  .wc-block-mini-cart__drawer {
    overflow-y: auto
  }

  .wc-block-mini-cart__footer {
    position: static
  }
}

.wc-block-mini-cart__button {
  align-items: center;
  background-color: transparent;
  border: none;
  color: inherit;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  gap: .5em;
  line-height: 1;
  padding: .5em;
  white-space: nowrap
}

.wc-block-mini-cart__button:hover:not([disabled]) {
  cursor: pointer
}

.wc-block-mini-cart__button .wc-block-mini-cart__icon {
  height: 1.5em;
  margin: 0;
  width: 1.5em
}

.wc-block-mini-cart--preview .wc-block-mini-cart__amount {
  display: initial
}

.wc-block-mini-cart__tax-label {
  margin-right: .5em
}

@media screen and (min-width:1025px) {
  .wc-block-mini-cart__amount {
    display: initial;
    font-size: inherit;
    font-weight: inherit
  }
}

.drawer-open .wc-block-mini-cart__button {
  pointer-events: none
}

.wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-contents {
  box-sizing: border-box;
  justify-content: center;
  padding: 0;
  position: relative;
  background-color: #fff;
}

.wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-contents .wc-block-components-notices {
  margin: 16px 48px -16px 16px;
  margin-bottom: unset
}

.wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-contents .wc-block-components-notices .wc-block-components-notices__notice {
  margin-bottom: unset
}

.wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-contents .wc-block-components-notices:empty {
  display: none
}

:where(.wp-block-woocommerce-mini-cart-contents) {
  background: #fff
}

.wp-block-woocommerce-empty-mini-cart-contents-block,
.wp-block-woocommerce-filled-mini-cart-contents-block {
  background: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: fill-available
}

.wp-block-woocommerce-empty-mini-cart-contents-block[hidden],
.wp-block-woocommerce-filled-mini-cart-contents-block[hidden] {
  display: none
}

.wp-block-woocommerce-empty-mini-cart-contents-block {
  justify-content: center
}

.wp-block-woocommerce-filled-mini-cart-contents-block {
  justify-content: space-between
}

.wp-block-woocommerce-empty-mini-cart-contents-block .wc-block-mini-cart__empty-cart-wrapper {
  overflow-y: auto;
  padding: 48px 16px 16px
}

h2.wc-block-mini-cart__title {
  align-items: baseline;
  background: inherit;
  display: flex;
  font-size: 24px;
  margin: 16px 24px -16px;
  z-index: 1;
  font-weight: 700;
}

h2.wc-block-mini-cart__title span:first-child {
  margin-right: 8px
}

h2.wc-block-mini-cart__title span:last-child {
  font-weight: 500;
  font-size: 18px;
  opacity: 0.7;
  color: #5e6a61;
}

.wc-block-mini-cart__items {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px 16px 0
}

.wc-block-mini-cart__items .wc-block-mini-cart__products-table {
  margin-bottom: auto
}

.wc-block-mini-cart__items .wc-block-mini-cart__products-table .wc-block-cart-items__row {
  padding-bottom: 8px;
  padding-top: 8px
}

.wc-block-mini-cart__items .wc-block-mini-cart__products-table .wc-block-cart-items__row:last-child:after {
  content: none
}

.wc-block-mini-cart__footer {
  padding: 24px 16px;
  position: relative;
  background-color: var(--global--main-lighter-color);
}

.wc-block-mini-cart__footer .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal {
  font-weight: 600;
  margin-bottom: 16px
}

.wc-block-mini-cart__footer .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__description {
  display: none;
  font-size: .75em;
  font-weight: 400
}

@media only screen and (min-width:480px) {
  .wc-block-mini-cart__footer .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__description {
    display: unset
  }
}

.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout {
  display: flex;
  gap: 16px;
}

.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wp-block-button,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wp-block-woocommerce-mini-cart-cart-button-block,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wp-block-woocommerce-mini-cart-checkout-button-block,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout .wc-block-components-button,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout .wp-block-button,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout .wp-block-woocommerce-mini-cart-cart-button-block,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout .wp-block-woocommerce-mini-cart-checkout-button-block {
  display: inline-flex;
  flex-grow: 1;
  font-family: "figtree";
  font-weight: 600;
  padding: 10px 30px 10px 30px;
  transition: all 0.3s ease;
  border-radius: 50px;
}

@media only screen and (min-width:480px) {

  .wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wp-block-woocommerce-mini-cart-cart-button-block,
  .wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout .wp-block-woocommerce-mini-cart-cart-button-block {
    display: inline-flex
  }
}

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

  .wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions,
  .wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout {
    flex-direction: column
  }
}

.wc-block-mini-cart__footer .wc-block-components-payment-method-icons {
  margin-top: 16px
}

.wc-block-mini-cart__shopping-button {
  display: flex;
  justify-content: center
}

.wc-block-mini-cart__shopping-button a {
  border: 2px solid;
  color: currentColor;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none
}

.wc-block-mini-cart__shopping-button a:focus,
.wc-block-mini-cart__shopping-button a:hover {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  color: #fff
}

@keyframes wc-skeleton-shimmer {
  to {
    transform: translateX(100%)
  }
}

.wc-block-components-button:not(.is-link) {
  align-items: center;
  display: inline-flex;
  height: auto;
  justify-content: center;
  position: relative;
  text-align: center;
  transition: box-shadow .1s linear
}

.wc-block-components-button:not(.is-link):focus {
  box-shadow: 0 0 0 2px #0675c4;
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #0675c4;
  outline: 3px solid transparent
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
  text-wrap: balance;
  text-wrap: pretty;
  display: block
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text>svg {
  fill: currentColor
}

.wc-block-components-button:not(.is-link).text {
  color: #1e1e1e
}

.wc-block-components-button:not(.is-link).text:hover {
  opacity: .9
}

.wc-block-components-button:not(.is-link):disabled .wc-block-components-button__text {
  opacity: .5
}

.wc-block-components-button:not(.is-link).is-style-outline,
.wc-block-components-button:not(.is-link).outlined {
  background: transparent;
  color: currentColor
}

.wc-block-components-button:not(.is-link).is-style-outline:not(:focus),
.wc-block-components-button:not(.is-link).outlined:not(:focus) {
  box-shadow: inset 0 0 0 1px currentColor
}

.wc-block-components-button:not(.is-link).is-style-outline:active,
.wc-block-components-button:not(.is-link).is-style-outline:disabled,
.wc-block-components-button:not(.is-link).is-style-outline:focus,
.wc-block-components-button:not(.is-link).is-style-outline:hover,
.wc-block-components-button:not(.is-link).outlined:active,
.wc-block-components-button:not(.is-link).outlined:disabled,
.wc-block-components-button:not(.is-link).outlined:focus,
.wc-block-components-button:not(.is-link).outlined:hover {
  background-color: #1e1e1e;
  color: #fff
}

.wc-block-components-button:not(.is-link).is-style-outline:hover,
.wc-block-components-button:not(.is-link).outlined:hover {
  background-color: #1e1e1e;
  color: #fff;
  opacity: 1
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
  box-shadow: 0 0 0 2px #0675c4;
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #0675c4;
  outline: 3px solid transparent
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link).text {
  color: #1e1e1e
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link).text:hover {
  opacity: .9
}

@keyframes wc-skeleton-shimmer {
  to {
    transform: translateX(100%)
  }
}

:root {
  --drawer-width: 480px;
  --neg-drawer-width: calc(var(--drawer-width)*-1)
}

@keyframes fadein {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slidein {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(max(-100%, var(--neg-drawer-width)))
  }
}

@keyframes rtlslidein {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(min(100%, var(--drawer-width)))
  }
}

.wc-block-components-drawer__screen-overlay {
  background-color: rgba(95, 95, 95, .35);
  bottom: 0;
  left: 0;
  opacity: 1;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity .3s;
  z-index: 9999
}

.wc-block-components-drawer__screen-overlay--with-slide-out {
  transition: opacity .3s
}

.wc-block-components-drawer__screen-overlay--with-slide-in {
  animation-duration: .3s;
  animation-name: fadein
}

.wc-block-components-drawer__screen-overlay--is-hidden {
  opacity: 0;
  pointer-events: none
}

.wc-block-components-drawer {
  display: block;
  height: 100%;
  left: 100%;
  max-width: 100%;
  position: relative;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(max(-100%, var(--neg-drawer-width)));
  width: var(--drawer-width);
}

.rtl .wc-block-components-drawer {
  transform: translateX(min(100%, var(--drawer-width)))
}

.wc-block-components-drawer__screen-overlay--with-slide-out .wc-block-components-drawer {
  transition: transform .3s
}

.wc-block-components-drawer__screen-overlay--with-slide-in .wc-block-components-drawer {
  animation-duration: .3s;
  animation-name: slidein
}

.rtl .wc-block-components-drawer__screen-overlay--with-slide-in .wc-block-components-drawer {
  animation-name: rtlslidein
}

.wc-block-components-drawer__screen-overlay--is-hidden .wc-block-components-drawer {
  transform: translateX(0)
}

@media screen and (prefers-reduced-motion:reduce) {

  .wc-block-components-drawer,
  .wc-block-components-drawer__screen-overlay {
    animation-name: none !important;
    transition: none !important
  }
}

.wc-block-components-button.wc-block-components-drawer__close {
  background: var(--global--dark-green);
  border-radius: 50%;
  padding: 12px;
  position: absolute !important;
  right: 12px;
  top: 12px;
  z-index: 2;
}

.wc-block-components-button.wc-block-components-drawer__close:active,
.wc-block-components-button.wc-block-components-drawer__close:focus,
.wc-block-components-button.wc-block-components-drawer__close:hover {
  opacity: 1
}

.wc-block-components-button.wc-block-components-drawer__close:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none
}

.wc-block-components-button.wc-block-components-drawer__close svg {
  fill: #fff;
  display: block
}

.wc-block-components-drawer__content {
  height: 100dvh;
  position: relative;
}

.admin-bar .wc-block-components-drawer__content {
  height: calc(100dvh - 46px);
  margin-top: 46px
}

@media only screen and (min-width:783px) {
  .admin-bar .wc-block-components-drawer__content {
    height: calc(100dvh - 32px);
    margin-top: 32px;
    padding: 24px;
  }

  .wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-contents {
    border-radius: 25px;
    box-shadow: 0 16px 80px -30px rgba(66, 102, 85, 0.6);
    overflow: hidden;
  }
  .wc-block-components-drawer__content {
    padding: 24px;
  }
}

@keyframes wc-skeleton-shimmer {
  to {
    transform: translateX(100%)
  }
}

table.wc-block-cart-items,
table.wc-block-cart-items td,
table.wc-block-cart-items th {
  background: none !important;
  border: 0;
  margin: 0
}

.editor-styles-wrapper table.wc-block-cart-items,
table.wc-block-cart-items {
  width: 100%
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header,
table.wc-block-cart-items .wc-block-cart-items__header {
  font-size: .75em;
  text-transform: uppercase
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image {
  width: 100px
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product {
  visibility: hidden
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total {
  text-align: right;
  width: 100px
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header th,
table.wc-block-cart-items .wc-block-cart-items__header th {
  font-weight: 700
}

.wc-block-cart-item__quantity {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
  margin: 0;
  width: 100%
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  line-height: 1.2
}

.wc-block-cart-item__remove-link {
  display: inline;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  color: #C04424;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:active,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:focus,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:active,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:focus,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  background: transparent
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  color: inherit;
  cursor: pointer;
  text-decoration: none
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link[hidden],
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link[hidden] {
  display: none
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  display: block;
  margin-bottom: 12px;
  max-width: max-content;
  font-size: 16px;
  font-family: "figtree";
  line-height: 20px;
  font-weight: 500;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name[hidden],
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name[hidden] {
  display: none
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  font-size: 1em;
  line-height: 1.8;
  text-align: right
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row.is-disabled,
table.wc-block-cart-items .wc-block-cart-items__row.is-disabled {
  opacity: .5;
  pointer-events: none;
  transition: opacity .2s ease
}

@container (max-width: 699px) {
  .wc-block-cart table.wc-block-cart-items td {
    margin: 0;
    padding: 0
  }

  .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__remove-link,
  .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__header {
    display: none
  }

  .wc-block-cart table.wc-block-cart-items:not(.wc-block-mini-cart-items):not(:last-child) .wc-block-cart-items__row {
    border-bottom: 1px solid hsla(0, 0%, 7%, .11)
  }

  .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row {
    display: grid;
    grid-template-columns: 80px 132px;
    padding: 16px 0
  }

  .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
    grid-column-start: 1;
    grid-row-start: 1;
    padding-right: 16px
  }

  .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
    grid-column-end: 4;
    grid-column-start: 2;
    grid-row-start: 1;
    justify-self: stretch;
    padding: 0
  }

  .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {
    align-self: end;
    grid-column-start: 1;
    grid-row-start: 2;
    padding-right: 16px;
    padding-top: 0;
    vertical-align: bottom
  }

  .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
    grid-row-start: 1
  }

  .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount {
    display: inline-block
  }
}

.is-medium table.wc-block-cart-items td,
.is-mobile table.wc-block-cart-items td,
.is-small table.wc-block-cart-items td {
  margin: 0;
  padding: 0
}

.is-medium table.wc-block-cart-items .wc-block-cart-item__remove-link,
.is-medium table.wc-block-cart-items .wc-block-cart-items__header,
.is-mobile table.wc-block-cart-items .wc-block-cart-item__remove-link,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__header,
.is-small table.wc-block-cart-items .wc-block-cart-item__remove-link,
.is-small table.wc-block-cart-items .wc-block-cart-items__header {
  display: none
}

.is-medium table.wc-block-cart-items:not(.wc-block-mini-cart-items):not(:last-child) .wc-block-cart-items__row,
.is-mobile table.wc-block-cart-items:not(.wc-block-mini-cart-items):not(:last-child) .wc-block-cart-items__row,
.is-small table.wc-block-cart-items:not(.wc-block-mini-cart-items):not(:last-child) .wc-block-cart-items__row {
  border-bottom: 1px solid hsla(0, 0%, 7%, .11)
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row,
.is-small table.wc-block-cart-items .wc-block-cart-items__row {
  display: grid;
  grid-template-columns: 80px 132px;
  padding: 16px 0
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
  grid-column-start: 1;
  grid-row-start: 1;
  padding-right: 16px
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
  grid-column-end: 4;
  grid-column-start: 2;
  grid-row-start: 1;
  justify-self: stretch;
  padding: 0
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {
  align-self: end;
  grid-column-start: 1;
  grid-row-start: 2;
  padding-top: 0;
  vertical-align: bottom
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  grid-row-start: 1
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount,
.is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount {
  display: inline-block
}

@container (min-width: 700px) {
  .wc-block-cart__main .wc-block-cart-items {
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
    border-spacing: 0
  }

  .wc-block-cart__main .wc-block-cart-items th {
    padding: 8px 16px 8px 0;
    white-space: nowrap
  }

  .wc-block-cart__main .wc-block-cart-items td {
    border-top: 1px solid hsla(0, 0%, 7%, .11);
    padding: 24px 0 24px 16px;
    vertical-align: top
  }

  .wc-block-cart__main .wc-block-cart-items th:last-child {
    padding-right: 16px
  }

  .wc-block-cart__main .wc-block-cart-items td:last-child {
    padding-right: 16px
  }
}

@container (min-width: 700px) {
  .wc-block-cart {
    margin-bottom: 3em
  }

  .wc-block-cart.has-dark-controls .wc-block-cart-items {
    border-color: hsla(0, 0%, 100%, .4)
  }

  .wc-block-cart.has-dark-controls .wc-block-cart-items th {
    color: #fff
  }

  .wc-block-cart.has-dark-controls .wc-block-cart-items td {
    border-color: hsla(0, 0%, 100%, .4)
  }
}

/* szuflada wlasne */

.wc-block-components-quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  width: 110px;
  height: 36px;
  position: relative;
}

.wc-block-mini-cart__footer-checkout {
  background-color: var(--global--dark-green);
  color: #fff;
}

/* Usuń strzałki z input[type=number] */
.wc-block-components-quantity-selector__input::-webkit-outer-spin-button,
.wc-block-components-quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wc-block-components-quantity-selector__input[type=number] {
  -moz-appearance: textfield;
}

/* Samo pole liczby */
.wc-block-components-quantity-selector__input {
  width: 44px;
  order: 2;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: transparent;
  padding: 0;
}

/* Przycisk + i − */
.wc-block-components-quantity-selector__button {
  width: 36px;
  height: 100%;
  border: none;
  background: #f8f8f8;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s, color 0.2s;
}

.wc-block-components-quantity-selector__button:hover {
  background: #eee;
  color: #000;
}

/* Ustawienia pozycji */
.wc-block-components-quantity-selector__button--minus {
  border-right: 1px solid #ddd;
  order: 1;
}

.wc-block-components-quantity-selector__button--plus {
  border-left: 1px solid #ddd;
  order: 3;
}

iframe {
  max-width: 100%;
}


/* Respons */

@media (min-width: 1025px) {
  .disable-desktop { 
    display: none;
  }
}

@media (max-width: 1024px) {
  .primary-menu-container, 
  #site-navigation,
  #header-top-menu-list,
  .top-additional-data,
  .disable-mobile,
  .shop-category-navigation {
    display: none;
  }
    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
  .wp-block-columns {
    flex-direction: column;
  }
  .top-header-contact-wrapper {
  justify-content: space-between;
  width: 100%;
}

.herosection-el {
  margin: 0 20px;
  padding: 24px 0 !important;
}
.has-as-h-1-font-size, .as-h-1, h1 {
  font-size: 36px;
  line-height: 38px;
}
.has-as-h-2-font-size, .as-h-2, h2 {
  font-size: 30px;
  line-height: 36px;
}
 .marker-headline strong::after {
    background-size: 92%;
    min-width: unset;
    left: 0;
    top: 0;
  }
.datazen-box.boxed {
  margin: 0 auto;
}  
.wp-block-search__button {
  text-indent: -999999px;
  padding: 0;
  margin: 0;
  width: 48px;
}
.wp-block-search__input {
  border: 0 none;
}
.wp-block-search__inside-wrapper {
  padding-left: 20px;
}
.home-search-tags {
  padding-left: 0;
}
.wp-block-dataze-google-review {
  text-align: center;
}
.review-top-el {
  justify-content: center;
}
.wp-block-spacer {
  max-height: 40px;
}
.dopacjenta-hero {
  margin-top: 0px;
}
.btnsiblings {
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.wp-block-group.is-layout-flex {
  flex-direction: column;
  gap: 16px;
}
.footer-main {
  flex-direction: column-reverse;
  gap: 32px;
}
.footer-contact {
  text-align: left;
}
.footer-left-data {
  gap: 16px;
}
.footer-container {
  background-position: top;
}
.footer-openings {
  margin-bottom: 0px;
}
.menu-widget .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
  flex-basis: auto !important;
}
.tag-button, .modal-menu li {
  margin-bottom: 8px;
}
.mobile-menu .sub-menu li a {
  width: auto !important;
}
.menu-widget .datazen-button {
  font-size: 15px;
  letter-spacing: .2px;
  margin-bottom: 32px;
}
.modal-menu > li {
  padding: 0 20px;
}
.modal-menu > li > .ancestor-wrapper {
  margin-bottom: 12px;
}
.sub-menu .ancestor-wrapper a {
  font-size: 16px !important;
  margin-bottom: 8px !important;
}
.sub-menu {
  margin-top: 12px;
}
.section-kategorie-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.double-image-secondary {
  max-width: 280px;
}
.mobile-reverse-column {
  flex-direction: column-reverse;
}
.dopacjenta-hero-left {
  margin-top: -40px;
}
#esg-proof {
  padding: 60px 0 !important;
}
.first-on-mobile {
  order: -1;
}
.esg-eco-middle {
  padding: 0px;
}
.esg-eco-variant {
  margin-top: 80px;
}
.page-header {
  margin: 0 20px 40px 20px;
  padding: 32px;
}
.contact-box-contact-page {
  flex-direction: column;
  align-items: start;
}
.padded-left-small, .padded-right {
  padding: 0px;
}
.dz-system-columns {
  flex-direction: column;
}
.contact-el {
  padding: 40px 10px;
}
.shop-sidebar .wc-block-product-filters__open-overlay {
  background: var(--global--dark);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  margin-top: 12px;
}
.shop-sidebar {
  text-align: center;
}
.woocommerce .woocommerce-result-count {
  margin: 28px auto 10px;
  float: unset;
  text-align: center;
}
.woocommerce-ordering {
  float: unset;
  width: 228px;
  margin: 0 auto 40px !important;
}
.wc-block-product-filters__overlay-dialog {
  text-align: left;
  margin: 20px;
  border-radius: 25px;
  overflow: hidden;
}
.wc-block-product-filters__overlay-content {
  padding: 20px !important;
}
.wc-block-product-filters__overlay-header {
  background-color: var(--global--main-lighter-color);
  padding: 12px !important;
}
.wc-block-product-filters__close-overlay svg {
  background: var(--global--secondary-color);
  color: #fff;
  border-radius: 50px;
  width: 28px;
  padding: 2px;
}
.wc-block-product-filters__close-overlay span {
  display: none;
}
.wc-block-product-filters__overlay-footer {
  box-shadow: 0 -4px 22px 4px rgba(7, 103, 51, 0.4) !important;
}
.wc-block-product-filters__apply.wp-element-button {
  background: var(--global--dark-green);
  padding: 16px;
  font-family: "figtree";
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.woocommerce ul.products[class*="columns-"] li.product, .woocommerce-page ul.products[class*="columns-"] li.product {
  width: 100%;
  margin: 0;
}
.single-product .product_title.entry-title {
  padding: 0 20px !important;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 16px;
}
.woocommerce .woocommerce-breadcrumb {
  font-size: 13px;
  line-height: 16px;
}
.shop-breadcrumbs {
  padding: 0 20px;
  align-items: start;
  margin-bottom: 12px;
}
.page-header.product-header {
  margin: 0 0 24px 0;
}
.product-gallery {
  min-width: unset;
  width: 100%;
}
.product-detailed-data, .checkout-data-customer-fields, .checkout-data-company-fields, .wp-block-datazen-testimonial, .wp-block-datazen-testimonial.position-review-right {
  flex-direction: column;
}
.product-detailed-left {
  gap: 24px;
}
.main-features {
  gap: 16px;
}
.product-page.dz-system-columns {
  gap: 28px;
}
.product-add-block .cart {
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
.product-package {
  padding: 0;
  border: 0 none;
}
.product-quantity-block {
  margin: 0;
}
.consultant-email {
  border: 0 none;
}
.consultant-image {
  top: -34px;
  left: 12px;
  bottom: unset;
}
.consultant-box-wrapper {
  padding: 16px 0;
  margin-bottom: 20px;
}
.consultant-box-inner {
  flex-direction: column;
}
.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: #f7fdfa !important;
}
.woocommerce table.shop_table td.actions button.button:disabled[disabled] {
  margin: 12px 0;
}
.checkout-data-left {
  margin-bottom: 48px;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
  justify-content: center;
  margin-bottom: 0px;
}
.blog-grid .posted-on {
  left: -8px;
}
.datazen-decorative-title.type-free .datazen-title {
  font-size: 62px;
  line-height: 62px;
}
.quote-logo {
  max-width: unset;
}
.quote-content {
  padding: 28px 24px;
}
.wp-block-quote {
  padding: 32px 24px 24px 24px;
}
.load-moreproducts-shadow {
  flex-direction: column;
}
.footer-links-container {
  gap: 20px;
  margin-bottom: 32px;
  flex-direction: column;
}
}


/* TYMCZASOWE WYLACZENIE */

.dark-search-sct .stars,
.dark-search-sct .rating-score {
  color: #24C06B;
}

.dark-search-sct .review-text {
  color: #96F0BF;
  opacity: 1;
}

.dark-search-sct .review-subtitle {
  color: #fff;
}

.dark-search-sct .review-subtitle::after {
  background-color: #fff;
}

.dark-search-sct .home-search-tags {
  color: #96F0BF;
}

.dark-search-sct .home-search-tags strong {
  color: #96F0BF;
}

.dark-search-sct .wp-block-search__inside-wrapper {
  border-color: #06572B;
}