@charset "UTF-8";
/*ver->2.0std-02-08-2019*/
/*ver->2.0std-02-08-2019*/
/* ================= FORMULARZE ================ */
label {
  color: lighten #777, 10%;
  font-size: 16px;
  text-transform: none;
  margin-top: 10px;
}

span + label {
  margin-top: 0;
}

input,
select,
textarea,
.input-placeholder {
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  height: 40px;
  line-height: 1;
}

.submit-controls {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.submit-controls > div {
  width: auto;
  margin-right: 20px;
}

.submit-controls > div:last-child {
  margin-right: 0;
}

.submit-area {
  display: block;
  text-align: right;
}

.submit-area .button {
  margin: 0;
}

.input-wrapper {
  padding: 0 0 10px 0;
  width: 100%;
  position: relative;
}

.form-fields-wrapper {
  margin-right: -10px;
  width: 100%;
}

.columns .form-fields-wrapper {
  width: auto;
}

/* ================= formularze nowe ================ */
/* ---- placeholdery pól ---- */
input ::-webkit-input-placeholder,
textarea ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333;
  opacity: 0.4;
}
input ::-moz-placeholder,
textarea ::-moz-placeholder {
  /* Firefox 19+ */
  color: #333;
  opacity: 0.4;
}
input :-ms-input-placeholder,
textarea :-ms-input-placeholder {
  /* IE 10+ */
  color: #333;
  opacity: 0.4;
}
input :-moz-placeholder,
textarea :-moz-placeholder {
  /* Firefox 18- */
  color: #333;
  opacity: 0.4;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-number {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 120px;
  max-width: 120px;
}

.input-number input {
  width: 40px;
  text-align: center;
}

.input-number > span {
  height: 40px;
  width: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  transition: all 300ms;
}

.input-number > span.down {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up:after,
.input-number > span.down:after {
  line-height: 1;
}

.input-number > span.up:after {
  content: url("graphics/commerce/plus.png");
}

.input-number > span.down:after {
  content: url("graphics/commerce/minus.png");
}

.input-number > span.down:hover,
.input-number > span.up:hover {
  background: #eee;
}

.select-placeholder {
  color: #999999;
}

/* ----- select ----- */
.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  height: 40px;
  margin: 0;
  width: 100%;
}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 0px 40px 0 10px;
  font-weight: normal;
  border: 1px solid #ddd;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.styledSelect:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 18px;
  right: 10px;
}

.styledSelect:active,
.styledSelect.active {
  background-color: #efefef;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid #ddd;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  padding: 0 6px;
  margin: 0 0;
  padding: 0 10px;
}

/* -- SELECT HOVER -- */
.options li:hover {
  background-color: #000;
  color: #fff;
}

/* INNY SELECT */
.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  margin-top: -13px;
}

.select2-results ul,
.select2-results ul li {
  text-align: left;
  margin: 0;
}

.select2-results ul li {
  padding: 9px 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #111;
  color: #fff;
}

.select2-container {
  width: 100% !important;
}

/* --- input type=radio, input type=checkbox --- */
input[type=checkbox] + label,
input[type=radio] + label {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
}

input[type=checkbox] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 15px;
  max-width: 15px;
  min-width: 15px;
  height: 15px;
  margin-right: 10px;
  margin-top: 2px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=checkbox]:checked + label::before {
  content: "✓";
  background: #28765A;
}

input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  height: 22px;
  max-width: 22px;
  min-width: 22px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100%;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=radio]:checked + label::before {
  background: radial-gradient(circle, #28765A 40%, #fff 50%);
}

input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.checklist.rodo label {
  font-size: 0.7rem;
}

.checklist.wrapper {
  display: block;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 10px;
}

.checklist.wrapper > label {
  margin-bottom: 10px;
}

.checklist.wrapper > label:last-child {
  margin-bottom: 0;
}

/* === DISABLED === */
input[type=checkbox][disabled] + label {
  opacity: 0.8;
}

input[type=checkbox][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[type=radio][disabled] + label {
  opacity: 0.8;
}

input[type=radio][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[disabled=disabled] {
  background-color: #f0f0f0;
}

/* === swith toggle === */
.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #777;
  border-radius: 20px;
  display: block !important;
}

.onoffswitch-checkbox[disabled=""] + .onoffswitch-label {
  opacity: 0.6;
  pointer-events: none;
}

.onoffswitch-label:before {
  display: none !important;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Inter, tahoma, arial, sans-serif;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #04aa6d;
  color: #ffffff;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #eee;
  color: #777;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #777;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/* =============== zestawy pól ============== */
.input-combo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.input-combo > div {
  flex: 1;
  margin-right: 10px;
}

.input-combo > div:last-child {
  margin-right: 0;
}

.input-combo > div.post-code {
  flex: 0.5;
}

/* ================ Klasy specjalne ============= */
.question-label {
  display: block;
  margin-top: 20px;
}

span + .question-label {
  margin-top: 0;
}

/* ================ Wyszukiwarka ================== */
.simple-search-wrapper .button.search-button img {
  pointer-events: none;
}

.custom-file {
  padding-left: 40px;
  width: 240px !important;
  cursor: pointer;
}

.custom-file > input {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.custom-file .ico {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  background-image: url("graphics/svg/drop.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.custom-file-label {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.container {
  max-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 0.8em 0;
  letter-spacing: 0;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.2em;
  color: #519c46;
}

h3 {
  font-size: 1.7em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
  font-weight: bold;
}

#START h1 {
  font-size: 4.8em;
}

#START h2 {
  font-size: 3.8rem;
}

span.subtitle {
  color: #68A030;
}

a {
  text-decoration: none;
}

button {
  background: none;
}

.button {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: normal;
  border: none;
  border-radius: 5px;
}

.button.alt {
  color: #777;
  border: solid 1px #777;
  background: transparent;
}

.button.txt {
  height: 2em;
  padding: 0;
  background: none;
  color: #001E28;
  min-width: 0;
  padding-right: 35px;
}

.button.txt:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 18px;
  background-image: url("graphics/svg/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: right 300ms;
}

.button.txt:hover:after {
  right: 0;
}

.button.cta {
  height: 40px;
  background: #68A030;
}

.button.alt.cta {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
  color: #fff;
}

.button.file-btn {
  padding-right: 40px;
  background: none;
  color: #777;
  border: 1px solid #777;
}

.button.file-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  box-sizing: border-box;
  background-image: url("graphics/download.png");
  background-color: none;
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  background-origin: content-box;
}

.button.ico-btn {
  padding-right: 65px;
}

.button.ico-btn .ico {
  background: #28765A;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.button.ico-left,
.button.ico-right,
.button.ico-left:hover,
.button.ico-right:hover {
  background: #101010;
  border: 0;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.ico-left {
  padding-left: 40px;
}

.button.ico-right {
  padding-right: 40px;
}

.button.ico-left .ico,
.button.ico-right .ico {
  position: absolute;
  top: 0;
  padding: 15px;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.ico-left .ico {
  left: 0;
}

.button.ico-right .ico {
  right: 0;
}

.button.alt.ico-left,
.button.alt.ico-right,
.button.alt.ico-left:hover,
.button.alt.ico-right:hover {
  background: transparent;
  border: solid 1px #777;
  color: #777;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.updated {
  font-size: 0.9rem;
  font-weight: bold;
  color: #68A030;
}

.social-sharing-module {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.social-sharing-module > span.sharing-title {
  margin: 0;
  margin-right: 1.8em;
  font-size: 1.1em;
}

#copy_link_sharing {
  position: relative;
}

#copy_link_sharing:after {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #519c46;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms;
  transform: scale(0);
}

#copy_link_sharing.link-copied:after {
  transform: scale(1);
}

.links ul li {
  list-style: none;
  margin-left: 0;
}

.links ul li a {
  text-decoration: none;
  transition: all 300ms;
}

.video-wrapper .mp4-video video {
  display: block;
  max-width: 100%;
}

.cb-table table {
  table-layout: fixed;
  max-width: 1000px;
}

.cb-table table tr td,
.cb-table table tr th {
  vertical-align: middle;
}

.cb-table table tr td .button,
.cb-table table tr th .button {
  margin: 0;
}

.header {
  max-width: 100%;
}

nav.desktop .nav-button > a {
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav.desktop .nav-button > a span {
  position: relative;
}

nav.desktop .nav-button > a span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: #28765A;
  transition: all 300ms;
}

nav.desktop .nav-button > a:hover span:after,
nav.desktop .nav-button.urhere > a span:after {
  height: 2px;
}

.header-modules {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.header-modules .button {
  margin: 0;
  min-width: 0;
}

.header-modules .phone-wrapper {
  margin-left: 30px;
}

.phone-wrapper .button .ico {
  padding: 10px;
}

.opSlider-control-prev,
.opSlider-control-next {
  display: none;
}

.banner-content h1,
.banner-content h2,
.banner-content .text-wrapper,
.banner-content .controls {
  text-align: left;
}

#BOTTOM,
#SYSTEM-FOOT {
  background: #F4F6F9;
}

#BOTTOM h3:first-child {
  margin-top: 0;
}

#SYSTEM-FOOT {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#SYSTEM-FOOT .container {
  height: auto;
  display: flex;
  justify-content: space-between;
}

#START h2 {
  text-align: center;
}

.PAGE {
  padding: 40px 0;
}

#START .carousel {
  margin: -40px 0 0 0;
}

a:hover {
  text-decoration: none;
  color: #28765A;
}

.bg-color {
  background: linear-gradient(90deg, #68A030, #28765A);
}

.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color .subtitle,
#START .bg-color .subtitle,
.bg-color p,
.bg-color a,
.bg-color span {
  color: #fff;
}

.bg-color .green-alert,
.bg-color .red-alert,
.bg-color .yellow-alert {
  color: inherit;
}

.check-onscreen {
  position: relative;
}

.check-onscreen.offscreen-bottom {
  top: 100px;
  opacity: 0;
  transition: all 400ms;
}

.check-onscreen.onscreen {
  top: 0;
  opacity: 1;
  transition: all 400ms;
}

.blur-up {
  filter: blur(5px);
  transition: filter 400ms;
}

.blur-up.lazyloaded {
  filter: blur(0);
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.onscreen .AnimateSVG path,
.onscreen .AnimateSVG g path,
.onscreen .AnimateSVG g g path,
.onscreen .AnimateSVG g g g path {
  stroke-dashoffset: 0px !important;
  transition: all 4s linear;
}

.swiper-wrapper {
  /*margin-left: -20px!important;
  margin-right: -20px!important;*/
}

.swiper-slide .card {
  background-color: #f1f1f1;
}

.swiper-container {
  position: relative;
}

.swiper-button-prev {
  left: -50px !important;
}

.swiper-button-next {
  right: -50px !important;
}

:root {
  --grid-v-margin: 30px;
}

.input-wrapper.floating-label {
  position: relative;
}

.input-wrapper.floating-label > label[for] {
  margin-top: 0;
  pointer-events: none;
}

.input-wrapper.floating-label > label[for]:first-child {
  position: absolute;
  top: 20px;
  transform: translate(0, -50%);
  left: 10px;
  display: inline-block;
  padding: 2px;
  background: #fff;
  cursor: text;
  opacity: 0.5;
  z-index: 1;
  transition: all 200ms;
}

.input-wrapper.floating-label > label[for].active:first-child,
.input-wrapper.floating-label > label[for].stay-active:first-child {
  top: 0;
  left: 5px;
  opacity: 1;
  font-size: 0.7rem;
}

#CANVAS {
  min-height: auto;
}

h5,
ol li,
ul li {
  margin: 0;
  text-decoration: none;
  list-style: none;
}

#SYSTEM-FOOT {
  padding: 40px;
}

#SYSTEM-FOOT h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.copyright {
  background-color: #f4f6f9;
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.copyright p {
  margin: 0;
}

#TOP-MAIN .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-links {
  padding-left: 150px;
}

.navbar-links > a {
  color: #000;
  padding: 5px 15px;
  font-weight: 500;
}

.search-input {
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.icon.outline {
  border-radius: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.icon.outline:hover, .input-group-text:hover {
  background-color: #f4f6f9;
}

.shop-info-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.shop-info-cta .text-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

h3 {
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.badge {
  border-radius: 16px;
  padding: 5px 8px;
  color: #68A030;
  background-color: rgba(127, 208, 46, 0.2);
}

.button.cta {
  background-color: #28765A;
  text-transform: none;
  padding: 10px 15px;
  min-height: auto;
  font-weight: 500;
  height: 40px;
}

.button.cta::after {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 10px;
  background-image: url("/media/b2b/b2b/img/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.shop-info-cta .button.cta {
  margin: 0;
  min-width: auto;
  margin-top: 30px;
}

.shop-discount-baner {
  margin: 0 auto;
  text-align: center;
}

.shop-category-cards {
  padding: 30px 0;
}

.shop-category-card {
  text-align: center;
}

.shop-category-card .image-wrapper,
.promotion-card .image-wrapper,
.offer-head .image-wrapper {
  background-color: #eee;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 20px;
  border-radius: 0;
  border: none;
}

.shop-category-card .image-wrapper .image,
.promotion-card .image-wrapper .image,
.offer-head .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: none;
}

.shop-category-card .image-wrapper img,
.promotion-card .image-wrapper img,
.offer-head img {
  background-color: #eee;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border: none;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 10px;
  pointer-events: none; /* So the icon does not block clicks */
}

.search-input {
  padding-left: 30px; /* Adjust this value based on the width of the icon */
}

.shop-brand-names {
  margin: 60px 0 30px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.shop-brand-name {
  margin-right: 40px;
}

.header-modules {
  height: 40px;
}

.header-modules form,
.header-modules input {
  line-height: normal;
  border-radius: 5px;
}

.shop-category-card-header {
  font-weight: 600;
  font-size: 1.2em;
  color: #000;
  text-align: center;
}

.button.txt {
  text-transform: none;
  color: #28765A;
  -webkit-text-decoration: 1px underline #28765A;
          text-decoration: 1px underline #28765A;
  text-underline-offset: 5px;
  border: none;
  font-weight: 500;
  font-size: 1em;
  padding: 0;
  margin: 0;
}

.button.txt::after {
  display: none;
}

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

.prod-name {
  color: #000;
  font-weight: 500;
  font-size: 0.9em;
}

.item-code {
  font-weight: 400;
  color: #4d5155;
  font-size: 0.8em;
}

.promotion-card .image-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.promotion-card:hover .image-wrapper {
  border: 1px solid transparent;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.11);
}

.product-card {
  padding-bottom: 40px;
  position: relative;
  display: block;
  min-height: 400px;
}

.product-card .price-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.price-current {
  color: #000;
  font-weight: 500;
  font-size: 1.2em;
}

.price-promo-badge {
  background-color: #68A030;
  width: 95px;
  height: 30px;
  padding: 5px 5px;
  color: white;
  position: absolute;
  top: 30px;
  right: 0;
  text-align: center;
}

.price-original {
  text-decoration: line-through;
}

.offers-page-main .offer-name {
  overflow: hidden;
  display: box;
  box-orient: vertical;
  line-clamp: 2;
  display: -moz-box;
  -moz-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promotion-section {
  padding: 30px 0;
}

.price-original {
  color: #4d5155;
  margin-left: 8px;
}

.footer-links > li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.offers-page-main {
  display: flex;
  gap: 90px;
  justify-content: space-between;
}

.filter-field.outline {
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0px 10px;
}

.filter-field.outline span {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  height: 20px;
}

.select-container {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background-color: white;
}

.form-select {
  width: auto;
  height: 40px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

.select-icon {
  width: 15px;
  height: 15px;
  margin-left: 10px;
  margin-right: 5px;
}

.offer-page-select {
  width: auto;
  height: auto;
  border: none;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

.offers-right-side {
  width: 100%;
}

.offers-right-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.offer-qty {
  padding: 10px;
  width: 120px;
}

.progress {
  width: 40px;
  height: 8px;
  background-color: #e7eaef;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 8px;
  line-height: 8px;
  color: white;
  text-align: center;
  border-radius: 5px;
  transition: width 0.4s ease;
}

.progress-text {
  font-size: 0.8em; /* Smaller font size for subtext */
  color: #4d5155; /* Dark grey color for better readability */
}

.offer-prices .price-promo-badge {
  position: relative;
}

.product-item-detail {
  margin-top: 20px;
  text-align: center;
}

.input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  overflow: hidden;
  height: 40px;
}

.input-group-text {
  cursor: pointer;
  background-color: white;
  border: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.input-number {
  text-align: center;
  border: none;
  color: #333;
  width: 80px;
}

.input-minus {
  border-right: 1px solid #ced4da;
}

.input-plus {
  border-left: 1px solid #ced4da;
}

.cart-button-add {
  display: block;
  width: 100%;
  background-color: #28765A;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-button-add img {
  margin-left: 5px;
}

.offers-page-main .filter-field.outline {
  padding: 0;
  gap: 0;
}

button#view-gallery {
  padding: 0 10px 0 10px;
}

button#view-list {
  padding: 0 10px 0 10px;
}

button#view-gallery,
button#view-list {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.offers-right-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

.product-text-wrapper {
  max-width: 250px;
}

.offers-page-main .all-filters {
  position: relative;
}
.offers-page-main .modal {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 9999;
  left: 0;
  padding: 10px;
  top: 50px;
  overflow: auto;
  box-shadow: 0px 4px 35px 0px rgba(66, 68, 90, 0.11);
}
.offers-page-main #filterButton {
  color: #28765A;
  font-weight: 500;
  cursor: pointer;
}
.offers-page-main .filterButton {
  position: relative;
}
.offers-page-main .active-filter {
  width: auto;
  position: relative;
  max-width: 80%;
  border: 1px solid #000000;
  border-radius: 25px;
  padding: 0 5px;
  margin: 10px 0;
  color: #000;
}
.offers-page-main .active-filter button {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
}
.offers-page-main .modal .button.cta {
  margin: 0;
  margin-top: 10px;
}
.offers-page-main .modal .button.cta::after {
  display: none;
}

.table-view .offers-offer {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px;
  align-items: center;
  justify-content: space-between;
}
.table-view .product-text-wrapper {
  max-width: 165px;
}
.table-view .offers-offer:hover {
  border-bottom: 1px solid transparent;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.11);
}
.table-view .offer-head {
  display: flex;
  gap: 15px;
}
.table-view .offer-head .image-wrapper {
  width: 90px;
  height: 90px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.table-view .offers-page-main .offer-name {
  overflow: hidden;
  display: box;
  box-orient: vertical;
  line-clamp: 3;
  display: -moz-box;
  -moz-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.gallery-view .offers-offer {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.gallery-view .offers-offer:hover {
  border-left: 1px solid white;
  border-bottom: 1px solid white;
}
.gallery-view .offers-offer.first-of-column {
  border-left: 1px solid transparent;
}
.gallery-view .offers-offer {
  padding: 15px;
}
.gallery-view .product-text-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.gallery-view .offers-offer:hover {
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.11);
}
.gallery-view .offer-qty {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 100%;
}
.gallery-view .prod-name {
  height: 50px;
}
.gallery-view .offer-head .image-wrapper {
  width: auto;
  height: 250px;
  padding-bottom: 0;
}
.gallery-view .input-group,
.gallery-view .cart-button-add img {
  margin: 0;
}
.gallery-view .cart-button-add {
  width: auto;
  margin: 0;
}
.gallery-view .cart-button-add span {
  display: none;
}
.gallery-view .input-number {
  width: 50px;
}
.gallery-view .product-item-detail {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  text-align: left;
}

.breadcrumps span,
.breadcrumps a {
  color: #4d5155;
}

.breadcrumps span {
  color: #000;
}

.offers-count {
  color: #000;
}

.filter-title {
  font-weight: 600;
  color: #001E28;
  margin-bottom: 5px;
  min-width: 200px;
}

.toggle-icon,
#toggle-category-icon,
#toggle-icon, #brand-toggle-icon {
  font-size: 1.5em;
  font-weight: 500;
  cursor: pointer;
}

.filter-title,
.has-children {
  position: relative;
}

.toggle-button, .toggle-category {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.form-check {
  margin-bottom: 5px;
}

.filter-title .icon {
  padding-left: 10px;
  font-size: 20px; /* Adjust size as needed */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

label {
  color: #001E28;
}

input[type=checkbox] + label::before {
  content: "";
  width: 15px;
  max-width: 15px;
  min-width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  font-size: 1em;
}

select {
  padding: 5px;
}

option,
select {
  color: #000;
  line-height: normal;
}

#view-list:hover,
#view-gallery:hover, .select-container:hover {
  cursor: pointer;
  background-color: #f4f6f9;
}

.panel-filter {
  color: #001E28;
}

.panel-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-button:focus {
  outline: none;
}

.subcategory {
  padding-left: 20px;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-inner {
  width: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  flex: 0 0 100%;
  display: none; /* Hide all items initially */
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-item.active {
  display: block; /* Show only active item */
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 1;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-indicator.active {
  background-color: #68A030;
}

.banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 250px;
  color: white;
  text-align: center;
}

.cart_area,
.order_area {
  background-color: #f4f6f9;
  margin-top: -40px;
  min-height: 60vh;
}

.cart-img {
  position: relative;
}

#cart-item-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #A90000;
  border-radius: 999px;
  border: 1px solid white;
  color: white;
  width: 20px;
  font-size: 0.8rem;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.basket-item .cart-item:last-of-type {
  border-bottom: none;
}

.cart-container {
  padding: 60px 0;
  position: relative;
}

.basket-item {
  min-height: 200px;
  background-color: white;
  padding: 25px;
}

.product-qty-wrapper {
  margin-left: auto;
  text-align: right;
}

.basket-item h3,
.extra-panel h3,
.contact-container h3 {
  margin: 0 0 25px 0;
}

.cart-photo {
  width: 120px;
  height: 120px;
  border-radius: 0;
  margin-right: 20px;
}

.delete-button > span {
  color: #a90000;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 0.8em;
}

.delete-button > span::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("/media/b2b/b2b/img/kosz.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.cart-footer {
  padding: 20px;
  background-color: #f4f6f9;
}

.cart-footer > span {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cart-footer > span::before {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  background-image: url("/media/b2b/b2b/img/info.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.cart-container.blur {
  filter: blur(5px);
  pointer-events: none;
}

.spinner-overlay.active {
  display: flex;
}

.cart_area .price-current {
  font-size: 1em;
}

.cart_area .cart-price {
  font-size: 0.9em;
  color: #000;
}

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

.cart-items {
  flex: 2;
  margin-right: 20px;
}

.extra-panel {
  flex: 1;
  background-color: white;
  padding: 25px;
  height: auto;
}

.spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-overlay {
  display: none;
}

.spinner-overlay.active {
  display: flex;
}

.spinner-text {
  font-size: 2em;
  font-weight: 600;
}

.spinner-border {
  margin-bottom: 20%;
}

.extra-cart-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  font-size: 0.9em;
  color: #000;
}

.extra-cart-total,
.extra-cart-delivery {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 0.9em;
  margin: 0;
}

.extra-cart-delivery {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

.extra-panel .button.cta {
  width: 100%;
  margin-top: 10px;
}

.extra-cart-total.final {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  font-weight: 500;
  color: #000;
}

#SYSTEM-FOOT {
  z-index: inherit;
}

.modal-content {
  position: relative;
  padding-top: 60px !important;
  overflow-y: auto;
}
.modal-content .close {
  position: absolute;
  top: 8px;
  right: 15px;
}
.modal-content .product-text-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: none;
  width: 100%;
}
.modal-content .product-text-wrapper .prod-name {
  max-width: 160px;
}
.modal-content .product-text-wrapper .product-sum-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.modal-content .cart-quantity.input-group {
  height: 30px;
}
.modal-content .cart-quantity.input-group .form-control {
  width: 45px;
  padding: 0;
}
.modal-content .cart-quantity.input-group .input-group-text {
  width: 30px;
  height: 30px;
}
.modal-content .header {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0;
  margin: 0;
}
.modal-content .extra-cart-total.final {
  border-top: none;
}
.modal-content .flex {
  display: flex;
  gap: 10px;
  width: 100%;
}
.modal-content .product-qty-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0;
}
.modal-content .cart-item {
  flex-direction: column;
  justify-content: space-between;
}
.modal-content .cart-photo {
  width: 75px;
  height: 75px;
  min-height: 75px;
  min-width: 75px;
  margin: 0;
  padding: 0;
}
.modal-content .cart-price {
  color: #000;
  font-size: 0.9em;
}
.modal-content .price-current {
  color: #000;
  font-size: 1em;
  font-weight: 500;
  margin: 0;
}
.modal-content .quantity {
  font-weight: 400;
  font-size: 0.9em;
  color: #000;
}

.swal-button {
  background-color: #28765A !important;
  border: 0;
}

.order_area {
  margin-bottom: -40px;
}

.cart-container {
  position: relative;
}

.cart-content {
  display: flex;
  justify-content: space-between;
}

.order-details {
  flex: 2;
  margin-right: 20px; /* Add some space between the items and the panel */
  padding: 5px 25px 25px 25px;
  background-color: white;
}

.product-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.cart-container.blur {
  filter: blur(5px);
  pointer-events: none;
}

.order_area .extra-cart-total {
  padding: 10px 0 0 0;
}

.order-photo {
  width: 80px;
  height: 80px;
  border-radius: 0;
  margin-right: 20px;
}

.form-control {
  margin: 5px 0;
}

.order-final-panel .extra-cart-total,
.order-final-panel .product-qty-wrapper {
  font-size: 0.9em;
}

.order-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.extra-panel .order-header h3,
.order-details h3 {
  margin: 0;
}

.cart-content .order-details .order-header {
  padding-bottom: 25px;
}

.form-select.order {
  border: 1px solid #28765A;
  padding: 5px 10px;
}

.order-number {
  background-color: #28765a;
  padding: 4px;
  width: 15px;
  height: 15px;
  font-size: 0.8rem;
  border-radius: 9990px;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.cart-row-2 {
  display: flex;
  gap: 12px;
}

.cart-row-2 > .street,
.cart-row-2 > .city {
  flex: 1;
}

.contact_area {
  background-color: #f4f6f9;
  margin: -40px 0;
}

.contact-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding: 60px 0;
}

.contact-container > div {
  background-color: white;
  padding: 25px;
}

.contact-container .form.contact {
  flex: 1;
}

.brands .brands-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.brands .brand-panel {
  min-width: 120px;
  width: auto;
}
.brands .brand-panel-list {
  margin-top: 10px;
}
.brands .brand-panel-title {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28765A;
  font-size: 1.2em;
  font-weight: 600;
  border: 1px solid #28765A;
}
.brands .brand-panel ul {
  width: auto;
}
.brands .brand-panel-list li {
  max-width: 120px;
}

.offer-item-container .offer-detail-column {
  width: 100%;
}
.offer-item-container .main-wrapper {
  display: flex;
  gap: 30px;
}
.offer-item-container .offer-item-row {
  display: flex;
  gap: 70px;
}
.offer-item-container .image-wrapper {
  border-radius: 0;
  width: 410px;
  height: 410px;
}
.offer-item-container .offer-item-row.first {
  padding: 60px 0;
}
.offer-item-container .offer-qty.offer {
  display: flex;
  width: auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.offer-item-container .product-item-detail {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  text-align: left;
}
.offer-item-container .input-group, .offer-item-container .cart-button-add {
  margin: 0;
}
.offer-item-container .cart-button-add {
  width: 70%;
}
.offer-item-container .price-current {
  font-size: 2rem;
}
.offer-item-container .secondary-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 100px;
}
.offer-item-container .main-image {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.offer-item-container h3 {
  margin-top: 0;
}
.offer-item-container .secondary-images .image {
  max-width: 150px;
  max-height: 150px;
  border: 2px solid transparent;
}
.offer-item-container .secondary-images .image:hover {
  max-width: 150px;
  max-height: 150px;
  border: 2px solid #28765A;
  cursor: pointer;
}
.offer-item-container .accordion {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.offer-item-container .accordion-item {
  border-top: 1px solid #ccc;
}
.offer-item-container .accordion-item:first-child {
  margin-top: 35px;
}
.offer-item-container .accordion-header {
  padding: 20px;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.offer-item-container .accordion-content {
  display: none;
  padding: 10px;
  border-top: 1px solid #ccc;
}
.offer-item-container .toggle-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.search-offers {
  display: none;
}/*# sourceMappingURL=theme.css.map */