@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

.col-sm-8.col-sm-offset-2.outer-contact .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  .wpcf7-not-valid-tip {
    position: absolute;
    background: #f6f2ee;
  }
}

.page-id-9 .woocommerce-notices-wrapper .woocommerce-message {
  display: none;
}
.qib-button-wrapper button.qib-button.disabled {
  background: #dddadad6 !important;
  opacity: 0.3 !important;
  pointer-events: none !important;
}
.qib-button-wrapper button.qib-button.minus {
  border-top: 1px solid #000 !important;
  border-bottom: 1px solid #000 !important;
  border-left: 1px solid #000 !important;
  border-right: 0;
}
.qib-button-wrapper button.qib-button.plus {
  border-top: 1px solid #000 !important;
  border-bottom: 1px solid #000 !important;
  border-right: 1px solid #000 !important;
  border-left: 0;
}

/*style-new-woo.css*/

/*global*/
h1.entry-title {
  font-family: "lora";
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  margin-top: 22px;
  margin-bottom: 60px;
}
.withBg {
  padding-bottom: 60px;
}

.main-navigation {
  position: relative;
  z-index: 999999;
  background: #fff;
}

/* Burger Button (Your Styles) */
.burger-menu-toggle {
  background: #8a8a8a;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 1001;
  padding: 27px 17px 20px;
  height: 70px;
  width: 73.2px;
  cursor: pointer;
  border-radius: 0;
  align-items: center;
  transition: all 0.3s ease;
  position: relative; /* Added for positioning context */
}

.burger-menu-toggle:hover {
  background: #adadad;
  transition: all 0.3s ease;
}

.burger-line {
  background-color: #fff;
  display: block;
  height: 1px;
  width: 23px;
  left: 23px;
  transition: all 0.3s ease;
}

/* Top Dropdown Menu - Now positioned under button */
.top-dropdown-menu {
  position: absolute;
  top: 70px; /* Same as button height */
  left: 0;
  /*width: 230px;*/
  background: #8a8a8a;
  z-index: 1000;
  transform: translateY(-100%); /* Changed from top: -100% */
  transition: transform 0.4s ease;
  max-height: calc(100vh - 70px); /* Account for button height */
  overflow-y: hidden;
}

.top-dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-dropdown-menu li {
  text-align: left;
}

.top-dropdown-menu a {
  padding: 0 29px;
  display: block;
  width: 100%;
  height: auto;
  font-family: "uniform";
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 69px;
  border-bottom: 1px solid #7e7e7e;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.top-dropdown-menu a:hover {
  background-color: #adadad;
  transition: all 0.3s ease;
  color: #fff;
}
.top-dropdown-menu li.current-menu-item a {
  color: #000;
}

/* Overlay */
.menu-overlay {
  position: absolute;
  top: 71px; /* Start below button */
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Active State */
body.menu-open .top-dropdown-menu {
  transform: translateY(0); /* Slides down */
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* Burger Animation */
body.menu-open .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.menu-open .burger-line:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*search*/

.searchSwitch i {
  transition: opacity 0s ease;
}

.searchBox {
  opacity: 0;
  transition: opacity 0s ease;
  background: #fff;
  padding: 0 0 0 15px;
  z-index: 100;

  display: none;
  width: 600px;
  height: 100px;
  border: 1px solid #8a8a8a;
  border-top: 0px solid transparent;
  position: absolute;
  top: 100%;
  right: 0;
  left: -1px;
  bottom: -100px;
  margin-top: 1px;
}
span.searchSwitch::before {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: #fff;
  bottom: -1px;
  left: -1px;
  position: absolute;
  opacity: 0;
  z-index: 3;
}
span.searchSwitch span.action {
  background: #fff;
}
.switchOn,
.switchOff {
  transition: opacity 0s ease;
}

/* Initial state - switchOn visible, switchOff hidden */
.switchOn {
  opacity: 1;
}
.switchOff {
  opacity: 0;
}

div.searchBox form {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.searchBox input[type].searchInput {
  line-height: 1;
  padding: 0 80px 0 10px;
}
#searchSubmit {
  display: block;
  position: absolute;
  width: 80px;
  height: 100px;
  right: 0;
  top: 0;
  z-index: 3;
  border: 0;
  background: transparent;
}
#searchSubmit i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#searchSubmit:hover i {
  opacity: 0.5;
}

/*top menu*/

ul.desktopMenu {
  display: flex;
  text-align: center;
  margin-left: 120px;
  /*
	margin: 0 auto;
	gap: 3.4%;    
    */
}

ul.desktopMenu li {
  display: inline-block;
  height: 100%;
  margin: 0;
}

ul.desktopMenu li a {
  font-family: "uniform";
  font-size: 18px;
  line-height: 70px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
  padding: 0 20px;
}

ul.desktopMenu li a:hover {
  color: #8a8a8a;
}
ul.desktopMenu li a.has-submenu::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  width: 18px;
  position: absolute;
  transition: transform 0.3s ease, color 0.3s ease;
  transform-origin: center;
  color: #000; /* Default arrow color */
}

ul.desktopMenu li a.has-submenu:hover::after {
  transform: scaleY(-1);
  color: #f00; /* Arrow color on hover */
}

.main-navigation ul ul {
  box-shadow: none;
  float: left;
  position: absolute;
  top: 100%;
  /*    left:0;*/
  left: -999em;
  z-index: 99999;
  background: #fff;
  border: 1px solid var(--grey);
  border-top: 1px solid #fff;
  display: block;
  text-align: left;
}
.main-navigation ul li ul li a {
  width: max-content;
}

/*login button*/
a.loginButton {
  display: block;
  width: auto;
  height: 70px;
  line-height: 70px;
  font-family: "uniform";
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  position: absolute;
  width: 130px;
  right: 190px;
  border-left: 1px solid #8a8a8a;
  border-right: 1px solid #8a8a8a;
  z-index: 999;
  text-transform: uppercase;
  text-align: center;
}

a.loginButton:hover,
.my-account:hover {
  color: #8a8a8a;
}

a.loginButton.logout {
  width: 66px;
  right: 190px;
}

a.cart {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 70px;
  line-height: 70px;
  width: 190px;
  z-index: 999;
  text-align: center;
}

a.cart span.sum {
  font-family: "uniform";
  font-size: 18px;
  line-height: 70px;
  font-weight: 700;
  display: inline-block;
  margin-right: 10px;
}

a.cart span.number {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  padding-right: 5px;
}

a.cart span.number i {
  font-size: 19px;
}

a.cart span.number span.quantity {
  position: absolute;
  line-height: 70px;
  font-family: "uniform";
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  left: 26px;
  top: -10px;
  text-align: left;
}

a.cart:hover *,
a.cart:hover span.number span.quantity {
  color: #8a8a8a;
}

/*breadcrumbs*/

.breadcrumbs {
  display: block;
  position: relative;
  max-width: 1170px;
  margin: 0 auto 60px;
  padding-right: 15px;
  padding-left: 15px;
  overflow: hidden;
}

/*search*/
h1.search-title {
  padding-bottom: 25px;
  font-family: "lora";
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  margin-top: 22px;
}
h1.search-title span {
  font-style: italic;
}
.search-no-results .withBg {
  background: none;
  position: relative;
}
.search-no-results h1.search-title {
  text-align: center;
}
.search-no-results .withBg::after {
  background: none;
}
.search-no-results ol.breadcrumb li:nth-child(2) {
  display: none;
}

/*product page*/

.product-fullsize-image-container {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.fullsize-product-image {
  width: auto !important;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  margin: 0 auto;
}

/* Completely disable all WooCommerce gallery features */
.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image {
  all: unset !important;
  display: block !important;
}

.woocommerce-product-gallery__trigger,
.flex-control-nav {
  display: none !important;
}

.woocommerce-product-gallery__image img {
  /*
    width:100%;
    */
}
.product-photos {
  margin-bottom: 120px;
}
.product-details {
  margin-bottom: 120px;
}
h1.product_title.entry-title {
  font-family: "Inter";
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  padding: 30px;
  border: 1px solid #000000;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0;
}
.product-features {
  background: var(--pink-light);
  font-family: Lora;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  padding: 25px 30px;
  margin-bottom: 25px;
}
.product-features p {
  margin-bottom: 10px;
}
.product-features strong {
  font-weight: 500;
}
.product-features ul li {
  padding: 6px 0 6px 30px;
  position: sticky;
  left: 0;
  top: 8px;
}
.product-features ul li::before {
  content: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.0592 5.35689C7.28136 3.56252 4.40636 4.85064 1.75011 2.03814C1.13136 1.38189 1.49074 9.39752 4.81574 12.435C7.24668 14.6538 11.0001 14.4063 12.2657 12.25C13.5314 10.0938 12.837 7.15096 10.0592 5.35689Z" stroke="black" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.40625 7.90625C8.09375 10.4375 10.875 11.9375 14.5312 12.5" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: absolute;
  left: 0;
  top: 8px;
}

.add-info {
  display: grid;
  gap: 15px;
  margin-top: 15px;
}
.add-info.two-columns {
  grid-template-columns: 1fr 1fr;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 2%;
  margin-left: 20px;
  margin-right: 20px;
  min-height: 32px;
}
.add-info.one-column {
  grid-template-columns: 1fr;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 2%;
  margin-left: 20px;
  margin-right: 20px;
  min-height: 32px;
}
.add-info-left,
.add-info-right {
  width: 100%;
  padding-left: 46px;
}
.add-info-left {
  background: url("./../img/icon-clock.svg") no-repeat left center;
}
.add-info-right {
  background: url("./../img/icon-package.svg") no-repeat left center;
  align-items: center;
  display: flex;
}

.product-wysylka {
  font-weight: 600;
}
.product-koszty-dostaw a {
  text-decoration: underline;
  transition: all 300ms ease;
}
.product-koszty-dostaw a:hover {
  text-decoration: none;
  transition: all 300ms ease;
}
.product-full-description {
  margin-top: 32px;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 2%;
  margin-bottom: 32px;
}
.product-full-description.literature {
  padding-bottom: 90px;
}
.product-full-description h4 {
  font-family: Lora;
  font-weight: 400;
  font-size: 30px;
  line-height: 140%;
  letter-spacing: 2%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 12px;
  padding-left: 30px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.product-full-description .accordion-content {
  border-top: 0;
}
.product-full-description .accordion-title.active::after,
.product-full-description .accordion-title::after,
.product-full-description .accordion-title:hover::after {
  top: 19px;
}

.product-full-description strong {
  font-weight: 600;
}
.product-full-description p {
  margin-bottom: 10px;
}
.product-full-description ul {
  margin-top: 15px;
  margin-bottom: 15px;
  list-style-type: disc;
  margin-left: 15px;
}

.literature-values {
  /* border-bottom: 1px solid #ece8e5;*/
  line-height: 42px;
  padding: 0 60px;
}
.additional-values {
  display: flex;
  border-bottom: 1px solid #ece8e5;
  line-height: 42px;
  padding: 1px 0;
}
.additional-values:first-of-type {
}
.additional-values:last-of-type {
  border: 0;
}
.additional-values .add-left {
  width: 70%;
  padding-left: 60px;
}
.additional-values .add-right {
  text-align: right;
  width: 30%;
  padding-right: 60px;
}

.product-bottom {
  margin-bottom: 50px;
}
.product-bottom h4 {
  font-family: Lora;
  font-weight: 400;
  font-size: 30px;
  line-height: 140%;
  letter-spacing: 2%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 12px;
  padding-left: 30px;
  margin-top: 12px;
  margin-bottom: 28px;
}
.product-bottom .ingredients h4 {
  text-transform: uppercase;
}
.product-bottom .second h4 {
  border: 0;
}
.product-bottom img {
  width: 100%;
}
.product-bottom img.empty {
  width: 50%;
  margin: 30px auto 0;
  display: flex;
}
.product-bottom-content {
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}
.product-bottom-content p {
  margin-bottom: 17px;
}
.product-bottom-content p strong {
  font-weight: 500;
}
.product-bottom-content ul {
  margin-bottom: 17px;
  padding-left: 15px;
}
.product-bottom-content ul li {
  list-style-type: circle;
  padding: 3px 0;
}

.bottom-product-section {
  width: 100%;
  margin-bottom: 46px;
}
.bottom-product-section .stock.in-stock {
  display: none;
}
.bottom-product-section .woosb-wrap {
  margin-top: 20px;
}
.bottom-product-section .woosb-products .woosb-product .woosb-thumb a {
  transition: all 300ms ease;
}
.bottom-product-section .woosb-products .woosb-product .woosb-thumb a:hover {
  opacity: 0.7;
  transition: all 300ms ease;
}
.bottom-product-section .woosb-products {
  font-size: 14px !important;
}
.bottom-product-section
  .woosb-products
  .woosb-product
  .woosb-title
  .woosb-name
  a,
.bottom-product-section .woosb-products .woosb-product .woosb-title a {
  transition: all 300ms ease;
}
.bottom-product-section
  .woosb-products
  .woosb-product
  .woosb-title
  .woosb-name
  a:hover,
.bottom-product-section .woosb-products .woosb-product .woosb-title a:hover {
  color: var(--light-grey);
  transition: all 300ms ease;
}
.bottom-product-section .woosb-quantity-input-plus,
.bottom-product-section .woosb-quantity-input-minus {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  line-height: 28px;
}
.bottom-product-section .qib-button-wrapper button.qib-button,
.bottom-product-section .qib-button-wrapper div.quantity.wqpmb_quantity {
  float: none !important;
  height: 31px;
}
.bottom-product-section .woosb-products .woosb-product .woosb-quantity input {
  font-size: 14px !important;
  font-family: "inter";
  top: 1px;
}
.bottom-product-section .woosb-products .woosb-product .woosb-price {
  width: 70px;
  flex: 0 0 70px;
}
.woosb-products .woosb-product .woosb-price * {
  line-height: 16px;
}
.woosb-wrap .woosb-summary {
  font-size: 14px;
}

.bottom-product-section .price {
  text-align: left;
  font-weight: 600;
  font-size: 30px;
  border: 1px solid #000;
  padding: 30px;
  margin-bottom:20px;
}
.bottom-product-section .price del {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-decoration: line-through;
  color: var(--light-grey);
  margin-left: 20px;
}
.wc-price-history {
  font-weight: 400;
  font-size: 14px;
  margin-top: 18px;
  line-height: 1;
}
.wc-price-history bdi {
  font-weight: 700;
}

.product_cat-kursy form.cart {
  margin-top: 20px;
}

.bottom-product-section .product-pojemnosc {
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
}
.bottom-product-section .product-pojemnosc span {
  font-size: 14px;
  margin-right: 15px;
  font-weight: 500;
}
.bottom-product-section form {
  display: flex;
}

.bottom-product-section form.cart .quantity .qty {
  font-weight: 500;
  font-size: 24px !important;
  font-family: "Inter";
  width: 52px !important;
  min-width: 52px !important;
  padding: 0 !important;
}
table.variations {
  margin: 0 0 20px;
}
.single_variation_wrap {
  /*
    border-top: 1px solid #000;
    */
}
.variations_form label {
  font-size: 14px;
  margin-right: 15px;
  font-weight: 500;
  color: #000;
  margin: 0 !important;
}
.reset_variations {
  display: none !important;
}
.woo-variation-swatches.wvs-show-label .variations th {
  margin-bottom: 12px;
}
.woo-variation-swatches.wvs-show-label .variations td,
.woo-variation-swatches.wvs-show-label .variations th {
  display: block;
  text-align: start;
  width: auto !important;
  padding: 0;
}
.woo-selected-variation-item-name {
  display: none !important;
}
.woocommerce-variation-price {
  text-align: center;
  margin-top: 20px;
  display: none !important;
}

.custom-variation-error,
.composite_wrap .composite_message .woocommerce-info,
.woocommerce-info {
  color: #343a40 !important;
  margin-bottom: 15px;
  margin: 10px 0 !important;
  padding: 10px;
  background: #ffc107 !important;
  border: 1px solid rgb(255, 204, 204);
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.woocommerce-info {
  max-width: max-content;
  margin: 0 auto !important;
}

.composite_form:not(.paged) .composite_wrap {
  padding-top: 0 !important;
}
.composite_wrap .composite_message {
  margin-bottom: 9px !important;
}

.single-product .blockUI.blockOverlay {
  visibility: hidden !important;
}

.woo-variation-swatches ul.variations {
  border-top: 1px solid #000;
  padding-top: 1px;
  margin-top: 10px;
}
ul.variations li ul li {
  padding: 0 !important;
  border-radius: 0 !important;
  border: 0;
  margin: 0 2px !important;
  box-shadow: none !important;
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px !important;
  letter-spacing: -5%;
}
ul.variations li ul li .variable-item-contents {
  border-bottom: 1px solid transparent;
}
ul.variations li ul li .variable-item-contents:hover {
  border-bottom: 1px solid #000;
}
ul.variations li ul li.selected .variable-item-contents {
  background: #f6f2ee;
  border-bottom: 1px solid #000;
}
.woo-variation-swatches
  .wvs-style-squared.variable-items-wrapper
  .variable-item:not(.radio-variable-item).button-variable-item
  .variable-item-span {
  padding: 0 3px !important;
  margin-top: 3px;
}
.woo-variation-swatches
  .wvs-archive-variations-wrapper
  .variable-items-wrapper
  .variable-item:not(.radio-variable-item) {
  height: 25px !important;
  min-width: 28px !important;
}
.woo-variation-swatches
  .wvs-style-squared.variable-items-wrapper
  .variable-item:not(.radio-variable-item) {
  border-radius: 0 !important;
  margin: 0 !important;
}
/*
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):focus, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover {
	-webkit-box-shadow: 0 0 0 2px #000;
	box-shadow: 0 0 0 2px #000 !important;
}
    */
.single-product
.variable-items-wrapper
  .variable-item:not(.radio-variable-item).button-variable-item.selected:not(
    .no-stock
  ) {
  background-color: var(--pink-light);
}

.single-product .product-details .variable-items-wrapper {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr)) !important;
  gap: 10px;
}

.single-product .product-details .variable-items-wrapper li {
  width: 100% !important;
  min-height: 50px;
}

/*
.single-product .variable-item:not(.radio-variable-item):hover {
	box-shadow: 0 0 0 2px #000 !important;
}
 */

.wp-block-woocommerce-cart .is-composited {
  display: none !important;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  /*gap: 10px;*/
}
.woocommerce-variation-add-to-cart .qib-button-wrapper {
  width: 50%;
  margin: 0;
  /*flex-shrink: 0;  Prevents the element from shrinking */
  justify-content: flex-start;
}

.single_add_to_cart_button,
.wc-block-components-checkout-place-order-button {
  font-family: "Inter" !important;
  text-align: center;
  color: #ffffff;
  background-color: #000;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 50px !important;
  height: 50px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block !important;
  padding: 0 29px;
  border: 0;
  border-radius: 0;
  /* width: 50%;*/
  width: 100% !important;
}
.wc-block-components-checkout-place-order-button {
  padding: 0 !important;
  transition: all 300ms ease !important;
}
.single_add_to_cart_button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background-color: var(--light-grey);
  transition: all 300ms ease;
}
.wp-block-woocommerce-checkout-actions-block
  .wc-block-checkout__actions_row
  .wc-block-components-checkout-place-order-button
  .wc-block-components-checkout-place-order-button__text {
  display: block !important;
}
.qib-button-wrapper {
  height: 50px;
  margin: 0 !important;
  justify-content: flex-start !important;
}
form.cart .qib-button-wrapper button.qib-button {
  height: 50px !important;
  width: 52px;
  font-size: 24px;
  transition: all 300ms ease;
}
form.cart .qib-button-wrapper button.qib-button:hover {
  background: var(--light-grey) !important;
  transition: all 300ms ease;
}
form.cart .qib-button-wrapper div.quantity.wqpmb_quantity {
  width: fit-content;
  height: fit-content;
  border: 1px solid #000;
}
.woocommerce div.product form.cart div.quantity .qty {
  width: 52px !important;
  min-width: 52px !important;
  height: 48px !important;
}

/* Remove any existing float properties */
.bottom-product-section form .qib-button-wrapper {
  float: none;
  /*width:50%;*/
  width: auto;
  margin-right: 16px !important;
}
.outer-variants-button {
  width: 100%;
}
.wp-block-woocommerce-empty-cart-block {
  margin-top: 90px;
}
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  background-color: #8a8a8a;
}
.wp-block-woocommerce-empty-cart-block .wp-block-heading {
  margin-bottom: 40px;
}
.wp-block-product-new ul.wc-block-grid__products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  padding: 0px;
  margin: 0px auto;
  list-style: none;
  max-width: 100%;
}
.wp-block-product-new li.wc-block-grid__product {
  transition: 0.5s linear;
  text-align: center;
  border: 1px solid transparent;
  padding: 15px !important;
  transition: 0.5s linear;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 22.15%;
  flex: 0 0 calc(25% - 15px);
  box-sizing: border-box;
  margin: 0px;
  flex: auto !important;
  max-width: none !important;
}
.wp-block-product-new li.wc-block-grid__product:hover {
  border: 1px solid #000;
}
.wp-block-product-new .wc-block-grid__product-title {
  font-family: "uniform";
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
  min-height: 3em;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.wp-block-product-new .woocommerce-Price-amount {
  font-size: 18px;
}
.wp-block-product-new .wp-block-button.wc-block-grid__product-add-to-cart {
  border-top: 1px solid rgb(0, 0, 0);
  margin: 0;
}
.wp-block-product-new
  .wc-block-grid__product-add-to-cart.wp-block-button
  .wp-block-button__link {
  text-align: center;
  text-transform: uppercase;
  margin-top: 12px;
  background: var(--dark-grey);
  color: #fff;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2%;
  height: auto;
  padding: 9px 5px;
  border-radius: 0;
  transition: all 300ms ease;
}
.wp-block-product-new
  .wc-block-grid__product-add-to-cart.wp-block-button
  .wp-block-button__link:hover {
  background: var(--light-grey);
  transition: all 300ms ease;
}

/*product list*/

.woocommerce-products-header {
  /*
    display:none;
    */
  margin: 0 auto 30px;
  padding: 0 15px;
}
.woocommerce-products-header h1 {
  text-align: center;
  font-family: lora;
  font-size: 33px;
  line-height: 144%;
}
.woocommerce-result-count {
  display: none;
}

.recommended h2 {
  font-family: "uniform";
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.recommended ul.products {
  margin-top: 42px;
}

/*
ul.products li.product {
    transition: all .5s linear;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
ul.products li.product:hover{

}
*/
ul.products li.product {
  transition: all 0.5s linear;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  height: 400px;
  position: relative;
}

/*
ul.products li.product .product-inner{
    border:1px solid transparent;
    padding: 13px;
    transition: all 600ms ease;
}
*/
ul.products li.product .product-inner {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid transparent;
  padding: 13px;
  transition: all 600ms ease;
}
ul.products li.product .product-inner:hover {
  border: 1px solid #000;
  transition: all 0.5s linear;
  z-index: 9;
  background: #fff;
  transition: all 600ms ease;
}

/*
ul.products li.wvs-archive-product-wrapper{
 
}
ul.products li.wvs-archive-product-wrapper .product-inner{
    background:red;
    position: relative;
}
ul.products li.wvs-archive-product-wrapper .product-inner:hover{
    position: absolute;
}
*/
ul.products li.product img {
  margin: 0 auto;
}

ul.products a.woocommerce-LoopProduct-link {
  display: block;
}
ul.products li.product span.price {
  margin-left: 5px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -5%;
  text-align: left;
  display: block;
}
ul.products li.product span.price del {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -5%;
  text-align: center;
  text-decoration: line-through;
  color: var(--light-grey);
  margin-left: 7px;
}

ul.products li.product .product-badges {
  position: absolute;
  top: 10px;
  left: 5px;
}
ul.products li.product .onsale-new {
  background: var(--peach);
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 14px;
}
ul.products li.product .badge-new {
  background: var(--pink);
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 14px;
  margin-right: 4px;
}
ul.products li.product .onsale {
  display: none !important;
}
.product .onsale {
  background: var(--peach);
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 14px;
  position: absolute;
}

/* Force product images to 240×240px without stretching */
ul.products li.product img.attachment-woocommerce_thumbnail,
ul.products li.product img.woocommerce-placeholder {
  width: 240px !important;
  height: 240px !important;
  object-fit: contain; /* Keeps aspect ratio, adds white space */
  object-fit: cover; /* Alternative: fills space, may crop edges */
  display: block;
  margin: 0 auto; /* Centers the image */
}

/*
.woo-variation-swatches .wvs-archive-variations-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 600ms ease;
}
*/
.woo-variation-swatches .wvs-archive-variations-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
/*
.wvs-archive-product-wrapper:hover .wvs-archive-variations-wrapper {
    max-height: 500px; 
    opacity: 1;
    transition: all 600ms ease;
}
*/

.wvs-archive-product-wrapper:not(div):hover .wvs-archive-variations-wrapper {
  max-height: 500px;
  opacity: 1;
  transition: all 800ms ease-in-out;
}

/*nowe*/
.post,
.page {
  margin: 0 0 50px;
}
/*notification bar*/
.wpfront-notification-bar-spacer {
  position: fixed !important;
}
.wpfront-notification-bar {
  font-weight: 600;
  border-top: 1px solid var(--light-grey);
  font-family: "lora";
}

ul.products h2.woocommerce-loop-product__title {
  font-family: "Inter";
  font-weight: 300;
  font-size: 18px;
  line-height: 124%;
  letter-spacing: -0.05em; /* Corrected from -5% */
  text-align: left;
  color: #000000;
  margin: 12px 0 15px;

  /* Limit to 2 lines with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(2 * 1em * 1.24); /* Fallback for non-WebKit browsers */
  /*  height: calc(2 * 18px * 1.24);Fallback based on font-size & line-height */
}

ul.products a.add_to_cart_button,
ul.products li.product .button {
  text-align: center;
  text-transform: uppercase;
  margin-top: 12px;
  background: var(--dark-grey);
  color: #fff;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2%;
  height: auto;
  padding: 9px 5px;
}
ul.products a.add_to_cart_button:hover,
ul.products li.product .button:hover {
  background: var(--light-grey);
}

ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Adjust spacing */
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 100%;
}

ul.products.columns-4 li.product {
  flex: 0 0 calc(25% - 15px); /* 4 per row, with space for gap */
  box-sizing: border-box;
  margin: 0;
}
.wc-block-grid__product-title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
ins {
  background: transparent !important;
}

.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  font-family: Arial, sans-serif;
}

.woocommerce-pagination .page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-pagination .page-numbers li {
  display: inline-block;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: inline-block;
  padding: 2px 12px;
  text-decoration: none;
  border: 1px solid var(--light-grey);
  transition: all 0.3s ease;
  font-size: 15px;
}

.woocommerce-pagination .page-numbers a:hover {
  background-color: #f2f2f2;
  border-color: var(--grey);
}

.woocommerce-pagination .page-numbers .current {
  background-color: var(--grey);
  color: white;
  border-color: transparent;
  cursor: default;
}

.woocommerce-pagination .page-numbers .next {
  font-weight: bold;
}

.woocommerce-ordering {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: end;
}
.woocommerce-ordering select.orderby {
  appearance: none;
  background-color: #fff;
  border: 1px solid var(--light-grey);
  padding: 8px 12px;
  padding-right: 12px;
  font-size: 16px;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L9 1" stroke="%23000" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  padding-right: 27px;
}
.woocommerce-ordering select.orderby:focus {
  border-color: var(--light-grey);
  outline: none;
}
.woocommerce-ordering select.orderby:hover {
  border: 1px solid #000;
}

.product .entry-summary {
  margin-top: 0;
}

#apaczka_selected_point_data {
  border: 1px solid #000 !important;
  margin-top: 40px;
}

/*product gallery*/

.custom-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image {
  /*width: 100%;*/
  height: 600px; /* Set your desired fixed height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-product-image {
  /*width: 100%;*/
  height: 100%;
  object-fit: cover; /* This ensures the image covers the area while maintaining aspect ratio */
  object-position: center; /* Centers the image in the container */
}
/*
.gallery-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-slider img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    flex-shrink: 0;
}

.main-image {
	max-width: 100%;
}
.main-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}
*/

.gallery-slider {
  margin-top: 10px;
}

.gallery-slider img {
  cursor: pointer;
  width: 100px;
  height: auto;
  margin: 0 5px;
  transition: all 300ms ease;
}
.gallery-slider img:hover {
  opacity: 0.7;
  transition: all 300ms ease;
}

.slick-prev,
.slick-next {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  font-size: 0;
  width: 11px;
  height: 18px;
  transition: all 300ms ease;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.4;
  transition: all 300ms ease;
}
.slick-prev {
  left: -11px;
  background: transparent url("./../img/arrow-prev.svg") no-repeat center center;
}
.slick-next {
  right: -11px;
  background: transparent url("./../img/arrow-next.svg") no-repeat center center;
}
#main-product-image {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
#main-product-image.fade-out {
  opacity: 0;
}

.is-loading {
  background-color: transparent !important;
  border-radius: 0 !important;
  background-image: url("../img/icon_logo.svg") !important;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5 !important;
}
.full.product .wp-block-woocommerce-checkout.is-loading div,
.full.product .is-loading div {
  background-color: transparent !important;
  border-radius: 0 !important;
  opacity: 0.5 !important;
}
.full.product .is-loading div::after {
  background-image: linear-gradient(
    90deg,
    #fff,
    hsla(0, 0%, 96%, 0.302),
    #fff
  ) !important;
}

/*logowanie + lost pass*/

.woocommerce-ResetPassword {
  max-width: 780px;
  margin: 65px auto 0;
}
.woocommerce-ResetPassword p {
  margin-bottom: 10px;
}
.woocommerce-ResetPassword label {
  margin-bottom: 10px;
  margin-top: 10px;
}
.woocommerce-ResetPassword .woocommerce-form-row {
  justify-content: flex-end;
  display: flex;
}
.woocommerce-ResetPassword .form-row-first {
  display: block;
}
.woocommerce-ResetPassword .woocommerce-Button {
  color: #ffffff;
  background-color: #8a8a8a;
  border: 0;
  text-transform: uppercase;
  min-width: 195px;
  margin-top: 40px;
}
.woocommerce-ResetPassword .woocommerce-Button:hover {
  background-color: #adadad;
}

.woocommerce-ResetPassword .show-password-input {
  display: none;
}
.woocommerce-ResetPassword label {
  display: block;
  width: 100%;
}
.woocommerce-ResetPassword .password-input {
  display: block;
  width: 100%;
}
.woocommerce-ResetPassword .form-row-last {
  display: block;
}
.woocommerce-password-strength.strong {
  color: #0f834d;
  text-transform: lowercase;
  font-weight: 600;
  margin-right: 15px;
}

#customer_login {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}

#customer_login .u-column1,
#customer_login .u-column2 {
  width: 50%;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
}
#customer_login .u-column1 {
  border-right: 1px solid #000;
}

/* Optional: Add some spacing between columns */
#customer_login .u-column1 {
  padding-right: 10%;
}
#customer_login .u-column2 {
  padding-left: 10%;
}

#customer_login h2 {
  font-family: "lora";
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  margin-bottom: 50px;
}

#customer_login .form-row {
  justify-content: flex-end;
  display: flex;
}
#customer_login .form-row-wide {
  display: block;
}
#customer_login .woocommerce-button {
  color: #ffffff;
  background-color: #8a8a8a;
  border: 0;
  text-transform: uppercase;
  min-width: 195px;
  margin-top: 40px;
}
#customer_login .woocommerce-button:hover {
  background-color: #adadad;
}

#customer_login .woocommerce-form-login__rememberme {
  display: none;
}
#customer_login .show-password-input {
  display: none;
}
#customer_login label {
  margin-bottom: 10px;
  margin-top: 10px;
}
.woocommerce-LostPassword {
  text-align: right;
  text-decoration: underline;
  margin-top: 30px;
  border-top: 1px solid #ece8e5;
  padding-top: 10px;
  transition: all 0.3s ease;
}
.woocommerce-LostPassword:hover {
  text-decoration: none;
  transition: all 0.3s ease;
}

#customer_login .u-column2 p {
  margin: 10px 0;
}
#customer_login .u-column2 p a {
  text-decoration: underline;
}
#customer_login .u-column2 p a:hover {
  text-decoration: none;
}

/*after login moje konto*/

.woocommerce-MyAccount-content .show-password-input {
  display: none;
}
.woocommerce-MyAccount-content label {
  margin-bottom: 10px;
  margin-top: 10px;
}
.woocommerce-MyAccount-content #account_display_name_description {
  margin-top: 10px;
  display: block;
}
.woocommerce-MyAccount-content legend {
  font-family: "lora";
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.woocommerce-address-fields button,
.woocommerce-MyAccount-content .woocommerce-Button {
  color: #ffffff;
  background-color: #8a8a8a;
  border: 0;
  text-transform: uppercase;
  min-width: 195px;
  margin-top: 40px;
  float: right;
}
.woocommerce-address-fields button:hover,
.woocommerce-MyAccount-content .woocommerce-Button:hover {
  background-color: #adadad;
}

/*cart*/
.wc-block-components-button:not(.is-link) {
  color: #ffffff;
  background-color: #8a8a8a;
  border: 0;
  text-transform: uppercase;
  transition: all 0.3s ease;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}

.wc-block-components-button:not(.is-link):hover {
  background-color: #adadad;
  transition: all 0.3s ease;
}

.wc-block-components-form
  .wc-block-components-text-input
  input[type="email"]:hover,
.wc-block-components-form
  .wc-block-components-text-input
  input[type="number"]:hover,
.wc-block-components-form
  .wc-block-components-text-input
  input[type="password"]:hover,
.wc-block-components-form
  .wc-block-components-text-input
  input[type="tel"]:hover,
.wc-block-components-form
  .wc-block-components-text-input
  input[type="text"]:hover,
.wc-block-components-form
  .wc-block-components-text-input
  input[type="url"]:hover,
.wc-block-components-text-input input[type="email"]:hover,
.wc-block-components-text-input input[type="number"]:hover,
.wc-block-components-text-input input[type="password"]:hover,
.wc-block-components-text-input input[type="tel"]:hover,
.wc-block-components-text-input input[type="text"]:hover,
.wc-block-components-text-input input[type="url"]:hover,
.wc-blocks-components-select .wc-blocks-components-select__select:hover {
  background: #f6f2ee;
}
.wc-block-components-radio-control--highlight-checked
  .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked
  label.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: inset 0 0 0 1px currentcolor !important;
}
.wc-block-components-checkout-return-to-cart-button:hover {
  color: var(--grey);
}
.wc-block-components-checkbox__label a {
  text-decoration: underline;
}
.wc-block-components-totals-coupon .wc-block-components-panel__button:hover,
.wc-block-components-product-name:hover,
.wp-block-woocommerce-cart-order-summary-shipping-block
  .wc-block-components-totals-shipping-panel
  .wc-block-components-panel__button:hover {
  color: var(--grey);
}
.wc-block-components-product-price {
  white-space: nowrap;
}

.wp-block-separator.is-style-dots {
  display: none !important;
}
.wp-block-woocommerce-empty-cart-block h2.wp-block-heading {
  text-align: left;
  font-family: "uniform";
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 144%;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
  min-height: 3em;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.wp-block-woocommerce-empty-cart-block
  h2.wp-block-heading.with-empty-cart-icon {
  text-align: center;
  margin-bottom: 50px;
}

.empty-cart-message {
  text-align: center;
  padding-bottom: 80px;
}
.empty-cart-message h2.wp-block-heading {
  text-align: center !important;
}
.empty-cart-message a {
  width: 200px;
  margin: 0 auto;
}

#billing-country,
#shipping-country {
  background: var(--disabled);
  background: #f1f1f1;
  pointer-events: none;
  cursor: not-allowed;
}
.wc-block-checkout__actions_row
  .wc-block-components-checkout-place-order-button {
  width: 50% !important;
}


.product #geowidget_show_map {
  padding: 0;
  max-width: 200px;
  background-color: var(--dark-grey);
  margin-bottom: 0;
  margin-top: 40px;
  box-shadow: none !important;
  border-radius: 0;
  line-height: 1;
  color: #ffffff;
  background-color: var(--grey);
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}
.product #geowidget_show_map:hover {
  background-color: var(--light-grey);
}

/*nwsl*/
.newsletter-box {
  padding-top: 35px !important;
  width: 100%;
}
.newsletter-box .wpcf7-form {
  display: flex;
  float: right;
}
.newsletter-box .wpcf7 form .wpcf7-response-output {
	position: absolute;
	top: 64px;
	font-size: 13px !important;
	line-height: 1 !important;
	padding: 10px 15px !important;
	right: 15px;
	margin-right: 0 !important;
	margin-left: 0 !important;
	max-width: 340px;
	left: auto;
	border-radius: 0;
	font-family: 'Inter';
	font-weight: 400 !important;
	letter-spacing: 0;
	line-height: 1;
	background-color: #fff3cd !important;
	height: auto;
	margin-top: 30px !important;
}
.newsletter-box .wpcf7 form .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-bottom: 0;
  margin-left: 14px;
  display:none;
}
.newsletter-box input.wpcf7-submit {
  height: 50px;
  background-color: #822661;
  width: 90px;
  color: white;
  font-size: 14px;
  border: 0;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
  text-transform: unset;
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
}
.newsletter-box input.wpcf7-submit:hover {
  background-color: var(--grey);
}
.newsletter-box input.wpcf7-email {
  padding: 10px 13px !important;
  max-width: 250px;
  font-size: 16px;
}
.newsletter-box input.wpcf7-email::placeholder {
  color: var(--light-grey);
  font-size: 16px;
}

.newsletter-box .wpcf7-form .wpcf7-spinner {
  position: absolute;
  top: 100px;
  left: auto;
  right: 0;
}

/*info - errors*/
.single-product .woocommerce-notices-wrapper,
.archive .woocommerce-notices-wrapper {
  display: none !important;
}
.woocommerce-notices-wrapper {
  max-width: 1170px;
  margin: 20px auto;
  outline: none !important;
}
.woocommerce-no-products-found {
  max-width: 1170px;
  margin: 20px auto;
  outline: none !important;
}
.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #b3e0ff;
  padding: 20px;
  text-align: center;
  color: #fff;
  outline: none !important;
  margin-bottom: 30px;
  /*
    margin-left: 15px;
    margin-right: 15px;
    */
}
.woocommerce-MyAccount-content .woocommerce-info{
max-width: none !important;
}

.woocommerce-message {
  background-color: #b3e6b3 !important;
  clear: both;
  text-align: center;
  padding: 20px;
  outline: none !important;
  /*
    margin-left: 15px;
    margin-right: 15px;
    */
  margin-bottom: 30px;
}
.woocommerce-message .button.wc-forward {
  display: none;
}

.woocommerce-error {
  background-color: #ffb3b3 !important;
  outline: none !important;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-error{
background-color: #ffc107 !important;
}

.wc-block-components-notice-snackbar-list {
  display: none !important;
  visibility: hidden !important;
  z-index: -1 !important;
}
.slick-track {
  margin-left: 0 !important;
}

.woocommerce-order-details a {
  text-decoration: underline;
}
.order_details .component_table_item {
  display: none;
}
#radio-control-wc-payment-method-options-p24-online-payments__label img {
  display: none;
}
.wc-block-components-totals-footer-item-tax {
  display: none;
}

/*404*/
.not-found {
  text-align: center;
}
.not-found .page-header {
  border: 0;
}
.not-found h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.outer-woocommerce-no-products-found{
  text-align: center;
}
.not-found a,
.woocommerce-no-products-found a {
  font-family: "uniform";
  font-size: 18px;
  line-height: 70px;
  height: 70px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  padding: 0 29px;
  background: var(--grey);
  transition: all 300ms ease;
  color: #fff;
  margin: 40px auto;
}
.not-found a:hover,
.woocommerce-no-products-found a:hover {
  background: var(--light-grey);
  transition: all 300ms ease;
  color: #fff;
}

/*faq*/
.faq {
  padding-top: 60px;
}
.faq h1 {
  margin-bottom: 45px !important;
}

.accordion-item {
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #000;
}
.accordion-inner {
  padding: 15px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
}
.accordion-title {
  color: var(--grey);
  display: block;
  position: relative;
  padding: 10px 40px 10px 15px;
  cursor: pointer;
  font-family: "uniform";
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.4s;
}
.accordion-title:hover {
  color: var(--grey);
  transition: all 0.2s ease-in;
}
.accordion-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("../img/arrow-down.webp");
  position: absolute;
  right: 10px;
  top: 8px;
  transition: all 0.4s ease-in;
  transform: rotate(180deg) scaleY(-1);
}
.accordion-title:hover::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("../img/arrow-down.webp");
  position: absolute;
  right: 10px;
  top: 8px;
}
.accordion-title.active {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accordion-title.active::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 10px;
  top: 8px;
  transition: all 0.4s ease-out;
  transform: rotate(180deg) scaleY(1);
}
.accordion-title:hover::after,
.accordion-title.active:hover::after {
  transition: all 0.4s ease-in;
  opacity: 0.5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid #e7e7e7;
  opacity: 0;
  transition: max-height 0.4s ease-out, opacity 0.2s ease-out;
}
.accordion-content.open {
  opacity: 1;
}
.accordion-content p {
  display: block;
}
.accordion-content a {
  text-decoration: underline;
  transition: all 300ms ease;
}
.accordion-content a:hover {
  transition: all 300ms ease;
  text-decoration: none;
}

/*simple pages*/

.outer-simple {
  background-color: var(--pink-light);
  background-image: url("./img/simple-back-top.webp"),
    url("./img/simple-back-bottom.webp");
  background-repeat: repeat-x;
  background-position: top center, bottom center;
  padding-top: 50px;
  padding-bottom: 100px;
  margin-top: 0;
  margin-bottom: 100px;
}

.simple-page {
  max-width: 992px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  font-weight: 300;
  font-size: 16px;
}
.simple-page h1 {
  font-family: "lora";
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  margin-top: 22px;
  margin-bottom: 57px;
}
.simple-page h3 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  margin-top: 30px;
  border-bottom: 1px solid #ece8e5;
  border-top: 1px solid #ece8e5;
  padding-top: 20px;
  padding-bottom: 20px;
}
.simple-page p {
  margin-bottom: 20px;
}
.simple-page strong {
  font-weight: 500;
}
.simple-page ol {
  margin-bottom: 0;
  padding-left: 0;
  margin-left: 20px;
  list-style-type: disc;
}
.simple-page ul {
  margin-bottom: 30px;
  padding-left: 0;
  margin-left: 20px;
  list-style-type: decimal;
}
.simple-page ul h6 {
  font-weight: 600;
  margin: 20px 0 20px -20px;
}
.simple-page ul li,
.simple-page ol li {
  padding: 5px 0;
}
.simple-page ul li ul {
  margin-bottom: 0;
}
.simple-page ul li ul li {
  list-style-type: lower-latin;
}
.simple-page ul li ul.numbers li {
  list-style-type: decimal;
}
.simple-page ul li ul li ul {
  margin-bottom: 0;
}
.simple-page ul li ul li ul li {
  list-style-type: circle;
}
.simple-page ul li p,
.simple-page ol li p {
  margin-bottom: 5px;
}
.simple-page .double-image {
	display: flex;
	margin-top: 60px;
	margin-bottom: 40px;
	align-items: center;
}
.simple-page .double-image div {
  width: 50%;
}
.simple-page .double-image .first {
  padding-right: 30px;
}

/*blog*/

.blog-title {
  font-family: "uniform";
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  padding: 30px;
  border: 1px solid #000000;
  margin-bottom: 15px;
}

h1.single-blog-title {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-date {
  font-family: "uniform";
  font-weight: 700;
  display: block;
  width: 100%;
  font-size: 28px;
  padding: 20px 30px 0;
}

.post-tags {
  font-size: 18px;
  line-height: 28px;
  padding: 15px 30px;
  border: 1px solid #000000;
  border-bottom: 0;
}
.post-tags a {
  text-decoration: underline;
}
.post-tags a:hover {
  text-decoration: none;
}

.blog-content strong {
  font-weight: 700;
}
.blog-content ol,
.blog-content ul {
  margin-left: 20px;
}
.blog-content ol li {
  list-style-type: decimal;
}
.blog-content ul li {
  list-style-type: disc;
}
.blog-content a {
  text-decoration: underline;
}
.blog-content a:hover {
  text-decoration: none;
}
.blog-insta {
  text-align: center;
  margin-top: 30px;
}
.blog-insta a {
  width: 46px;
  height: 46px;
  display: block;
  margin: 10px auto 0;
}

.blog-insta .instagram-icon svg path {
  fill: currentColor; /* Inherits color from parent */
  transition: fill 0.3s ease; /* Smooth transition */
}

.blog-insta .instagram-icon:hover svg path {
  fill: #8a8a8a; /* Change to red on hover */
}

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

.post-list-item {
  padding: 15px;
  margin-bottom: 0;
  position: relative;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
}
.post-list-item:hover {
  border: 1px solid #000;
  transition: all 300ms ease;
}
.post-list-item:hover img{
  opacity:.7;
  transition: all 300ms ease;
}
.post-list-item img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: all 300ms ease;
}
.post-list-item h2.entry-title {
  line-height: 25px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.post-list-item h2.entry-title a {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-list-item .post-meta {
  border-top: 1px solid #8a8a8a;
  padding-top: 15px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "uniform";
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  letter-spacing: 1px;
}
.post-list-item .post-meta a:hover {
  color: #8a8a8a;
}

.post-content .navigation.posts-navigation {
  margin-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.post-content .nav-links {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.posts-navigation .nav-next {
  text-align: left;
  text-transform: lowercase;
}
.posts-navigation .nav-previous {
  text-align: right;
  text-transform: lowercase;
}
.posts-navigation .nav-next:hover,
.posts-navigation .nav-previous:hover {
  color: var(--grey);
}
.posts-navigation .nav-previous a::after {
  content: " →";
  margin-left: 5px;
}
.posts-navigation .nav-next a::before {
  content: "← ";
  margin-right: 5px;
}

.blog-right a:hover {
  color: var(--grey);
}

.navigation.post-navigation {
  display: none;
}

/* static pages*/

.movie iframe {
  width: 100%;
  height: 560px;
}
.gwarantujemy .box .in .item {
  display: flex;
}

.services-footer .buttons .telpho {
  background: #fff;
  color: #000;
  padding: 0;
  transition: all 0.2s;
}
.services-footer .buttons .telpho:hover {
  background: #fff;
  border: 1px solid var(--light-grey);
  color: var(--light-grey);
  transition: all 0.2s;
}
.simple-page a {
  text-decoration: underline;
  transition: all 0.2s;
}
.simple-page a:hover {
  text-decoration: none;
  transition: all 0.2s;
}
.page-contact a {
  text-decoration: underline;
  transition: all 0.2s;
}
.page-contact a:hover {
  text-decoration: none;
  transition: all 0.2s;
}

/*notification bar*/
.wpfront-notification-bar {
  font-weight: 600;
  border-top: 1px solid var(--light-grey);
  font-family: "lora";
}
.wpfront-notification-bar div.wpfront-close {
  top: 13px;
  right: 10px;
  font-size: 16px;
  padding: 10px 6px;
  border-radius: 0;
  color: var(--grey);
}
.wpfront-notification-bar div.wpfront-close:hover {
  color: var(--light-grey) !important;
  transition: all 300ms ease;
}
#wpfront-notification-bar div.wpfront-close:hover {
  border: 1px solid transparent !important;
  background-color: transparent !important;
  transition: all 300ms ease;
}

/*contact*/
.outer-contact {
  margin-top: 190px;
}
.outer-contact .wpcf7 {
  margin-top: 50px;
}

.outer-cf7-submit {
  text-align: right;
  position: relative;
  margin-top: 40px;
}
.wpcf7-form .wpcf7-submit {
  text-align: center;
  color: #ffffff;
  background-color: var(--grey);
  text-transform: uppercase;
  font-family: "uniform";
  font-size: 18px;
  line-height: 70px;
  height: 70px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block !important;
  padding: 0 80px;
  border: 0;
  border-radius: 0;
  width: auto;
}

.wpcf7-form .wpcf7-submit:hover {
  background-color: var(--light-grey);
  transition: all 300ms ease;
  border-color: #ccc #bbb #aaa;
}

.wpcf7-form .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 20px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  margin-bottom: 15px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.wpcf7 form.spam .wpcf7-response-output {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/*admin user*/
.woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}
.woocommerce-order .woocommerce-thankyou-order-received {
  font-size: 22px;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details,
.woocommerce-bacs-bank-details {
  font-weight: 600;
  margin-bottom: 30px;
}
.woocommerce-order-overview.woocommerce-thankyou-order-details strong,
.woocommerce-bacs-bank-details strong {
  font-weight: 400;
}

.woocommerce-order {
  margin: 0 auto;
  max-width: 700px;
}
.woocommerce-order-details .woocommerce-order-details__title {
  font-size: 22px;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
  margin-bottom: 40px;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details
  thead
  th {
  font-weight: 600;
  border-bottom: 1px solid var(--grey);
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details
  th {
  padding: 15px;
  border-bottom: 1px solid var(--grey);
}
.woocommerce-customer-details .woocommerce-column__title {
  font-weight: 600;
  border-bottom: 1px solid var(--grey);
  padding: 15px;
}
.woocommerce-customer-details address {
  margin: 10px 0;
  padding: 15px;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details .includes_tax .woocommerce-Price-amount{
  display:none;
}

#apaczka_pl_checkout_validation_modal div {
  border-radius: 0 !important;
}
#apaczka_pl_close_modal_button {
  color: #ffffff !important;
  background-color: #8a8a8a !important;
  border: 0 !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  padding: 0.6em 1em 0.4em !important;
  border-radius: 0 !important;
}
#apaczka_pl_close_modal_button:hover {
  background-color: #adadad !important;
  transition: all 0.3s ease;
}
#apaczka_pl_close_modal_cross:hover {
  opacity: 0.6;
}

.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  margin-left: 5px !important;
}

.outer-my-account {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
.user-full-cockpit {
  width: 100%;
  flex-grow: 1;
  margin: 30px 0;
  background: #fff;
  padding: 30px 30px 15px;
}
.user-full-cockpit p {
  margin-bottom: 15px;
}
.user-full-cockpit strong {
  font-weight: 600;
}
.user-full-cockpit a {
  text-decoration: underline;
}
.user-full-cockpit a:hover {
  text-decoration: none;
}
.custom-message {
  text-align: center;
}

.outer-my-account .woocommerce-MyAccount-navigation {
  border-right: 1px solid var(--grey);
  margin-right: 40px;
  padding-right: 40px;
  min-width: 200px;
}
.outer-my-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--light-grey);
}
.outer-my-account
  .woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--p24-one-click {
  display: none !important;
}
.outer-my-account .woocommerce-MyAccount-navigation ul li a {
  padding: 10px 0;
  display: block;
  transition: all 300ms ease;
}
.outer-my-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--light-grey);
  transition: all 300ms ease;
}

.outer-my-account .woocommerce-MyAccount-content {
  /*width:100%;*/
  width: 78%;
}
.outer-my-account .woocommerce-MyAccount-content table thead th {
  border-bottom: 1px solid var(--light-grey);
  padding-bottom: 20px;
}
.outer-my-account .woocommerce-MyAccount-content table th {
  font-weight: 600;
}
.outer-my-account .view:hover {
  color: var(--light-grey);
}
.outer-my-account .woocommerce-MyAccount-content p {
  margin-bottom: 15px;
}
.outer-my-account .woocommerce-MyAccount-content strong {
  font-weight: 600;
}
.outer-my-account .woocommerce-MyAccount-content p a {
  text-decoration: underline;
}
.outer-my-account .woocommerce-MyAccount-content p a:hover {
  text-decoration: none;
}
.outer-my-account .woocommerce-MyAccount-content mark {
  background-color: transparent !important;
}

.outer-my-account .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
  border-bottom: 1px solid var(--grey);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.outer-my-account
  .woocommerce-MyAccount-content
  .woocommerce-Address-title
  a.edit {
  text-transform: lowercase;
  color: #fff;
  font-family: "uniform";
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--grey);
  float: right;
  transition: all 300ms ease;
}
.outer-my-account
  .woocommerce-MyAccount-content
  .woocommerce-Address-title
  a.edit:hover {
  background-color: var(--light-grey);
  transition: all 300ms ease;
}
.outer-my-account .woocommerce-MyAccount-content address {
  margin-bottom: 30px;
}
.outer-my-account .woocommerce-MyAccount-content form h2 {
  font-family: "lora";
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.outer-my-account
  .woocommerce-MyAccount-content
  .woocommerce-info
  .wc-forward.button {
  float: none;
  color: #fff;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-woocommerce-checkout .wc-block-checkout__login-prompt:hover {
  color: var(--light-grey);
  transition: all 300ms;
}
.edit-post-visual-editor .wc-block-checkout__shipping-method-option:hover,
.wc-block-checkout__shipping-method-option:hover {
  background-color: #f6f2ee !important;
  transition: all 300ms;
}

.wc-block-components-checkbox .wc-block-components-checkbox__label {
  text-decoration: underline;
  transition: all 300ms;
}
.wc-block-components-checkbox .wc-block-components-checkbox__label:hover {
  text-decoration: none;
  transition: all 300ms;
}
.wc-block-components-checkbox
  .wc-block-components-checkbox__input[type="checkbox"]:hover {
  border: 1px solid #000;
}

.outer-my-account .woocommerce-info,
.outer-my-account .woocommerce-noreviews,
.outer-my-account p.no-comments {
  background-color: transparent;
  color: #000;
}
.wc-block-components-country-input svg {
  display: none !important;
}

.wc-block-checkout__add-note .char-counter {
  display: none !important;
}
.wc-block-checkout__add-note-open .char-counter {
  display: block !important;
}

.composite_form {
  display: block !important;
  margin-top: 15px;
}

/*simple page*/

.simple-page table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.simple-page table thead tr th {
  background: #fff;
  text-align: center;
}
.simple-page table th,
.simple-page table td {
  padding: 12px;
  border: 1px solid #ddd;
  vertical-align: middle;
}
.simple-page table td {
  text-align: center;
}
.simple-page th:first-child,
.simple-page td:first-child {
  text-align: left;
}
.simple-page table em {
  display: block;
  font-style: italic;
}
.simple-page td.special {
  font-weight: 700;
  color: #155724;
}
.composite_form .composite_price p.price,
.single-product .composite_form .composite_price p.price {
  display: none;
}

/*components product*/
.bottom-product-section .composite_form .step_title_wrapper {
  margin-bottom: 3px !important;
  font-size: 14px;
  margin-left: 10px;
}

.bottom-product-section .stock.out-of-stock {
  color: #343a40;
  margin-bottom: 15px;
  margin: 10px 0 !important;
  padding: 10px;
  background: #ffc107;
  border: 1px solid rgb(255, 204, 204);
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.component_section_title,
.component_content {
  display: none;
}
.bottom-product-section
  .composite_form:not(.paged)
  .component
  .component_inner {
  padding-bottom: 10px;
}
.composite_component {
}
.component .component_options_select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
}
.composite_button {
  display: flex;
}


/*about us*/
.certyfikaty-title{
  margin-top:64px;
  margin-bottom: 30px;
}
.ref-gallery .boxes {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
	position: relative;
	z-index: 3;
	margin-top: 64px;
}
.ref-gallery .boxes .open-lightbox{
  transition: all 300ms ease;
}
.ref-gallery .boxes .open-lightbox:hover{
  opacity: .8;
  cursor: pointer;
  transition: all 300ms ease;
}
.goverlay {
	background: rgba(0,0,0,.32) !important;
}
.glightbox-clean .gclose{
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
}
.glightbox-clean .gclose:hover{
  opacity: 0.8;
}
.glightbox-clean .gclose svg {
	width: 30px;
	height: auto;
}

/*age checker*/
.age-checker__restriction-wrapper {
  z-index: 99999999 !important;
}

.age-checker__restriction-wrapper--modal {
  background-color: rgba(0, 0, 0, 0.5);
}
.age-checker__inner {
  background: url("./../img/icon_logo.svg") no-repeat center top;
  padding-top: 160px;
}
.age-checker__restriction-block {
  border-radius: 6px;
  margin-left: 15px;
  margin-right: 15px;
}
.age-checker__header {
  line-height: 1;
  font-size: 20px !important;
  font-weight: bold;
}
.button.age-checker__confirm-button,
.button.age-checker__cancel-button {
  font-family: "uniform";
  font-size: 18px;
  line-height: 1;
  height: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 0 29px;
  color: #ffffff;
  background-color: var(--grey);
  text-transform: uppercase;
  transition: all 300ms ease;
  display: inline-block;
  border: 0;
  margin: 0 10px;
}
.button.age-checker__confirm-button {
  background-color: #155724;
}

.button.age-checker__confirm-button:hover,
.button.age-checker__cancel-button:hover {
  background-color: var(--light-grey);
  transition: all 300ms ease;
}

/*new age verification*/
.tdarkoverlay {
	z-index: 9999999;
}
h3.termstitle{
  display:none;
}
.tbrightcontent {
	position: fixed;
	top: 10%;
	left: calc(50% - 250px);
	width: 500px;
	height: auto;
	padding: 35px 16px 26px;
	background-color: #ffffff;
	z-index: 9999999;
	overflow: hidden;
	text-align: center;
	font-size: 15px;
	border-radius: 10px;
}
#wp-terms-popup-after-content {
	padding-bottom: 0;
}
.age-checker__header {
	margin-bottom: 16px;
}
.age-checker__description{
  margin-bottom: 22px;
  font-size: 17px;
}
.tthebutton{
  display:flex;
  gap: 20px;
}
input[type].termsagree,
input[type].termsdecline {
  font-family: "uniform";
  font-size: 18px;
  line-height: 1;
  height: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 0 29px;
  color: #ffffff;
  /*background-color: var(--grey);*/
  background-color: #000;
  text-transform: uppercase;
  transition: all 300ms ease;
  display: inline-block;
  border: 0;
  margin: 0 10px;
}
input[type].termsagree {
  background-color: #155724;
}

input[type].termsagree:hover,
input[type].termsdecline:hover {
  background-color: var(--light-grey);
  transition: all 300ms ease;
}

@media (max-width: 576px) {
  .tbrightcontent {
    top: 3%;
    left: calc(50% - 170px);
    width: 340px;
  }
  ul.products.columns-4 li.product,
  .wp-block-product-new li.wc-block-grid__product {
    flex: 0 0 100% !important;
    width: 100%;
  }
  .wp-block-product-new li.wc-block-grid__product {
    margin-bottom: 20px;
  }
  .services-bottom .products .item {
    width: 100% !important;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
  .single-product .variable-items-wrapper li {
    font-size: 14px !important;
  }
  .add-info.two-columns {
    grid-template-columns: 1fr;
  }
  .add-info-right {
    min-height: 32px;
  }
  .product-bottom h4,
  .product-full-description h4 {
    padding-left: 0;
  }
  .product-full-description h4 {
    font-size: 23px;
  }
  .product-bottom-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .additional-values .add-left {
    width: 50%;
    padding-left: 0;
  }
  .additional-values .add-right {
    width: 50%;
    padding-right: 0;
  }
  .literature-values,
  .additional-values {
    line-height: 24px;
    padding: 8px 0;
  }
  .woocommerce-variation-add-to-cart {
    display: block;
  }
  .bottom-product-section form {
    display: block;
  }
  .bottom-product-section form .qib-button-wrapper {
    margin-right: 0 !important;
    margin-bottom: 20px !important;
  }
  .simple-page table {
    font-size: 14px;
    line-height: 19px;
  }

  .simple-page ul {
    padding-left: 15px;
  }
  .simple-page ul li ul {
    margin-left: 5px;
  }
  .simple-page .double-image {
    display: block;
  }
  .simple-page .double-image img {
    width: 100px;
  }
  .simple-page .double-image {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .simple-page .double-image div {
    width: 100%;
  }
  .simple-page .double-image .first {
    padding-right: 0;
  }
  .product-full-description .accordion-title.active::after,
  .product-full-description .accordion-title::after,
  .product-full-description .accordion-title:hover::after {
    top: 13px;
  }
  .outer-my-account .woocommerce-MyAccount-content {
    width: 100%;
    display: block;
  }
  .wc-block-checkout__actions_row
    .wc-block-components-checkout-place-order-button {
    width: 100% !important;
  }
  .wc-block-components-checkout-return-to-cart-button {
    display: block;
    width: 100%;
  }
}
@media (min-width: 577px) {
}
@media (min-width: 577px) and (max-width: 768px) {
  ul.products.columns-4 li.product,
  .wp-block-product-new li.wc-block-grid__product {
    flex: 0 0 calc(50% - 10px) !important;
  }
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .additional-values .add-left {
    width: 60%;
    padding-left: 30px;
  }
  .additional-values .add-right {
    width: 40%;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .xs-hidden {
    display: none !important;
  }

    /*about us*/
    .ref-gallery .boxes {
        grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    }

  span.searchSwitch {
    height: 50px;
    width: 50px;
    left: 50px;
  }
  h1.search-title {
    font-size: 22px;
  }
  .breadcrumbs {
    padding-right: 0;
    padding-left: 0;
  }
  .breadcrumb::before {
    display: none !important;
  }

  .product .photos {
    margin-bottom: 10px;
  }
  h1.product_title.entry-title {
    font-size: 20px;
    line-height: 1;
    padding: 15px;
  }
  .bottom-product-section .price {
    padding: 15px;
  }
  .wc-price-history {
    margin-top: 10px;
    line-height: 20px;
  }

  .product-full-description {
    font-size: 14px;
  }

  #customer_login {
    display: block;
  }
  #customer_login .u-column1,
  #customer_login .u-column2 {
    width: auto;
    padding: 0;
  }
  #customer_login .u-column1 {
    border-right: 0;
    border-bottom: 1px solid #000;
    padding-bottom: 60px !important;
    margin-bottom: 60px;
  }

  .photoBox.miss {
    margin-top: 120px !important;
  }
  .photoBox img.topDeco {
    top: -90px !important;
    width: 50% !important;
  }
  .photoBox img.bottomDeco {
    bottom: -80px !important;
    width: 50% !important;
  }

  .row.mission.services div.slideInfo .title {
    height: 80px;
    font-size: 18px;
    padding: 16px;
    line-height: 22px;
  }
  .services div.slideInfo {
    width: 100%;
  }
  .services div.slideInfo .info .col.left {
    width: 100%;
  }
  .services div.slideInfo .info .col.right .box.top {
    border-top: 1px solid #000;
  }
  .services div.slideInfo .info .col.right {
    width: 100% !important;
    height: auto !important;
  }

  .gwarantujemy .box .in {
    text-align: center;
  }
  .gwarantujemy .box .in .item div {
    display: block !important;
    float: none !important;
  }
  .gwarantujemy .box .in .item {
    display: block !important;
  }
  .gwarantujemy .box .in .item span {
    display: block !important;
    margin: 10px auto 15px !important;
  }
  .services-footer .box {
    padding: 15px !important;
  }

  .contactData {
    padding-top: 60px !important;
  }
  .mapp {
    margin-top: 40px !important;
  }

  .blog-title {
    padding: 15px;
  }
  h1.single-blog-title {
    font-size: 20px;
    line-height: 22px;
  }
  .single-blog-excerpt {
    padding: 15px !important;
  }
  .blog-date {
    padding: 23px 15px 0;
    font-size: 20px;
    line-height: 22px;
  }
  .post-tags {
    font-size: 16px;
    line-height: 25px;
    padding: 15px;
  }

  .blog-right {
    margin-top: 30px;
  }
  .blog-right ul.tag-list {
    text-align: center;
  }
  .blog-right ul.tag-list li {
    display: inline-block;
  }
  .blog-right ul.tag-list li a {
    padding: 3px 10px;
    border: 1px solid #000;
    margin: 5px;
    font-size: 14px;
    display: block;
  }
  .blog-right ul.tag-list li a:hover {
    border: 1px solid var(--grey);
  }

  .outer-my-account {
    display: block;
  }
  .outer-my-account .woocommerce-MyAccount-navigation {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }
  .outer-my-account
    .woocommerce-MyAccount-content
    .woocommerce-Address-title
    a.edit {
    float: none;
  }
  .outer-my-account .woocommerce-MyAccount-content address {
    margin-top: 15px;
  }

  form.mailpoet_form {
    padding: 0 !important;
  }
  .newsletter-header {
    padding-left: 0 !important;
    margin-bottom: 30px;
  }

  ul.products h2.woocommerce-loop-product__title {
    -webkit-line-clamp: none;
  }

  .wpfront-notification-bar div.wpfront-close {
    top: 9px;
    font-size: 12px;
  }

  .custom-message {
    margin-top: 60px;
  }

  .wc-block-checkout__sidebar
    .wp-block-woocommerce-checkout-order-summary-block {
    display: none !important;
  }

  .wc-block-checkout__shipping-method-option-title {
    font-size: 15px !important;
    display: block;
    width: 100%;
    text-align: center;
  }
  .wc-block-components-radio-control__option-layout,
  .wc-block-components-radio-control-accordion-content {
    font-size: 15px;
    line-height: 24px;
  }
  .wc-block-components-product-price {
    padding: 0 0 0 20px;
  }
  .newsletter-box {
    padding-top: 0 !important;
  }
  .newsletter-box .wpcf7-not-valid-tip {
    display: none;
  }
  .newsletter-box .wpcf7-response-output {
    float: right;
    position: static;
    clear: both;
    max-width: 100%;
    margin-top: 20px !important;
  }
  .newsletter-area .container {
    padding-bottom: 80px;
  }
  
  .newsletter-box .wpcf7-form {
    display: block;
    float: none;
  }
  .newsletter-box input.wpcf7-email {
    max-width: none;
  }
  .newsletter-box input.wpcf7-submit {
    width: 200px;
    float: right;
    margin-top: 20px;
  }
  .newsletter-box .wpcf7-form .wpcf7-spinner {
    position: relative;
    top: 34px;
  }
  .outer-my-account .woocommerce-MyAccount-content {
    width: 100%;
  }
    .gslide-media {
        position: relative;
    }
    .glightbox-clean .gclose {
      right: auto;
      left: 10px;
  }
    .opineo-side-slider-widget__label {
        top: -30px!important;
    }

    .woocommerce-order .single_add_to_cart_button{
    letter-spacing: 0px;
    }
    .product-full-description.literature {
        padding-bottom: 10px;
    }
    section.products {
        padding-bottom: 0 !important;
    }
    section.product {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }
    footer.bottom {
        margin-top: 60px !important;
        margin-bottom: 40px;
    }
    .cky-revisit-bottom-left {
        width: 50px !important;
        height: 50px !important;
        bottom: 19px !important;
        left: 25px !important;
    }
    .grecaptcha-badge {
        transform: scale(0.6);
        transform-origin: bottom right;
        right: -112px !important;
        bottom: 90px !important;
        z-index: 9999;
        opacity: .8;
      }
      .newsletter-box .wpcf7 form .wpcf7-response-output {
        top: 95px;
        padding: 7px 10px !important;
    }
    .composite_button {
        display: block;
    }  
    .bottom-product-section form .composite_button .qib-button-wrapper{
        margin-bottom: 10px !important;
    }


}
@media (min-width: 769px) {
  .xs-up-hidden {
    display: none !important;
  }

  .outer-my-account .woocommerce-MyAccount-navigation {
    width: 18%;
    margin-right: 2%;
    padding-right: 2%;
    min-width: auto;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .breadcrumb::before {
    display: none !important;
  }

  .product .photos {
    margin-bottom: 10px;
  }
  h1.product_title.entry-title {
    font-size: 24px;
    line-height: 28px;
  }
  ul.products.columns-4 li.product,
  .wp-block-product-new li.wc-block-grid__product {
    flex: 0 0 calc(33.333% - 13.33px) !important;
  }
  .row.mission.services {
    margin-top: 0 !important;
  }
  .row.movie {
    margin-bottom: 0 !important;
  }
  .row.mission .desc {
    margin-bottom: 140px;
  }
  .row.mission.services div.slideInfo {
    width: 100%;
  }
  .row.mission.services div.slideInfo .title {
    height: 80px;
    font-size: 18px;
    padding: 16px;
    line-height: 22px;
  }
  .services div.slideInfo .info .col.left {
    width: 100%;
  }
  .services div.slideInfo .info .col.right .box.top {
    border-top: 1px solid #000;
  }
  .services div.slideInfo .info {
    height: auto;
  }
  .services div.slideInfo .info .col {
    float: none !important;
  }
  .services div.slideInfo .info .col.right {
    width: 100% !important;
    height: 60px !important;
  }
  .services div.slideInfo .info .col.right {
    float: left;
    border: 0;
    border-top: 0px;
    padding-bottom: 10px;
  }
  .services div.slideInfo .info .col.right .box.top {
    padding-top: 10px;
    padding-left: 10px;
    height: auto;
    padding-bottom: 10px;
  }
  .services ul.icoList li {
    float: left;
    display: block;
    width: auto;
    margin-right: 15px;
  }

  .services div.slideInfo {
    height: auto;
  }
  .services div.slideInfo .info .col.right .box.top {
    padding: 10px !important;
  }
  .services-middle .products.second .item {
    margin: 0 auto !important;
  }
  .services-middle .products .nav-left,
  .services-middle .products .nav-right {
    display: block !important;
  }

  .about .title {
    margin-top: 40px !important;
  }

  .contactData img.mapDecor {
    right: 0;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .outer-my-account .woocommerce-MyAccount-navigation {
    margin-right: 20px;
    padding-right: 20px;
  }
  .outer-my-account .woocommerce-MyAccount-content {
    font-size: 14px;
  }
  .outer-my-account .woocommerce-MyAccount-content table thead th {
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 20px;
    padding: 5px;
  }
  .outer-my-account .woocommerce-MyAccount-content table tbody tr td {
    padding: 5px;
    line-height: 20px;
  }
  .outer-my-account .woocommerce-MyAccount-navigation ul li a {
    font-size: 14px;
    line-height: 22px;
  }
  .wc-block-components-order-summary .wc-block-components-order-summary-item {
    display: block !important;
    line-height: 20px;
  }
  .wc-block-checkout__sidebar
    .wp-block-woocommerce-checkout-order-summary-block {
    display: none !important;
  }
  ul.products li.product img.attachment-woocommerce_thumbnail,
  ul.products li.product img.woocommerce-placeholder {
    width: 190px !important;
    height: 190px !important;
  }




}
@media (min-width: 900px) and (max-width: 991px) {
  .services div.slideInfo .info .col.left {
    border-right: 0 !important;
  }
}
@media (max-width: 991px) {
  .md-hidden {
    display: none !important;
  }
  .product .entry-summary h1.product_title {
    display: none;
  }

  .product-photos {
    margin-bottom: 60px;
  }
  .product-details {
    margin-bottom: 60px;
  }
  .product-bottom {
    margin-bottom: 30px;
  }
  .product-bottom .first img {
    margin-top: 30px;
  }
  .product-bottom .second img {
    margin-top: 30px;
  }
  .product-bottom-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .product-full-description {
    margin-top: 44px;
  }
}
@media (min-width: 992px) {
  .md-up-hidden {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  ul.products h2.woocommerce-loop-product__title {
    font-size: 15px;
  }
  .woo-variation-swatches
    .wvs-style-squared.variable-items-wrapper
    .variable-item:not(.radio-variable-item).button-variable-item
    .variable-item-span {
    padding: 0 0px !important;
    margin-top: 3px;
  }
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .row.movie {
    margin-bottom: 0 !important;
  }
  .row.mission .desc {
    margin-bottom: 140px;
  }
  ul.products li.product img.attachment-woocommerce_thumbnail,
  ul.products li.product img.woocommerce-placeholder {
    width: 190px !important;
    height: auto !important;
  }
}
@media (min-width: 1201px) and (max-width: 1439px) {
  ul.desktopMenu {
    left: 90px;
    width: calc(100% - 430px);
  }
}
@media (min-width: 1440px) {
  ul.desktopMenu {
    left: 90px;
    width: calc(100% - 430px);
  }

}

.payment_method {
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 100px;
  opacity: 1;
}
.payment-method-hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}


/* Całkowite ukrycie Google reCAPTCHA badge */
.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
}
.recaptcha-notice{
  margin-top:0 !important;
  margin-bottom: 20px !important;
}
/*
#ChatWithForm label > div {
  line-height: 14px !important;
}
#ChatWithForm div{
  background: red !important;
}
  */