@charset "UTF-8";
/*DLC*/
.btn {
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-weight: var(--e-global-typography-accent-font-weight);
  background-color: var(--e-global-color-accent);
  color: #18191a;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.btn:hover {
  background-color: #6daa97;
  color: #fff;
}

body[data-shop="shop-krakowska"] .btn {
  background-color: #a1bbd4;
  color: white !important;
}

body[data-shop="shop-krakowska"] .btn:hover {
  background-color: #6daa97;
  color: #fff;
}

.button-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 80px;
  background: #ecf5e2;
  color: #003764;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-weight: var(--e-global-typography-accent-font-weight);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.button-new:hover {
  background-color: #dee2d9;
}

#myProducts,
#cartProducts,
#soldProducts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-bottom: 50px;
}

#myProducts .content,
#cartProducts .content,
#soldProducts .content {
  width: 100%;
}

#myProducts h3,
#myProducts p,
#cartProducts h3,
#cartProducts p,
#soldProducts h3,
#soldProducts p {
  margin-bottom: 0;
}

#myProducts .desc,
#cartProducts .desc,
#soldProducts .desc {
  font-size: 15px;
  line-height: normal;
  width: 100%;
}

.product-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 991px) {
  .product-info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#myProducts {
  margin-top: 30px;
  overflow: auto;
  background: #e3ecd8;
  padding: 10px;
}

#myProducts .productTable {
  min-width: 500px;
}

#myProducts .productTable__footer {
  margin-top: 20px;
}

#myProducts .productTable__head {
  width: 100%;
}

#myProducts .productTable__content {
  width: 100%;
}

#cartProducts,
#soldProducts {
  background-color: #e3ecd7;
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#cartProducts .productTable__head,
#soldProducts .productTable__head {
  width: 100%;
}

#cartProducts .productTable__head__row__el--1,
#soldProducts .productTable__head__row__el--1 {
  width: 70%;
}

#cartProducts .productTable__head__row__el--2,
#soldProducts .productTable__head__row__el--2 {
  width: 30%;
}

#cartProducts .productTable__content,
#soldProducts .productTable__content {
  width: 100%;
  max-height: 360px;
  overflow-y: auto;
}

#cartProducts .productTable__content::-webkit-scrollbar,
#soldProducts .productTable__content::-webkit-scrollbar {
  width: 8px;
}

#cartProducts .productTable__content::-webkit-scrollbar-track,
#soldProducts .productTable__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#cartProducts .productTable__content::-webkit-scrollbar-thumb,
#soldProducts .productTable__content::-webkit-scrollbar-thumb {
  background: #6daa97;
  border-radius: 4px;
}

#cartProducts .productTable__content::-webkit-scrollbar-thumb:hover,
#soldProducts .productTable__content::-webkit-scrollbar-thumb:hover {
  background: #5a8f7d;
}

#cartProducts .productTable__content__row__el--1,
#soldProducts .productTable__content__row__el--1 {
  width: 70%;
}

#cartProducts .productTable__content__row__el--2,
#soldProducts .productTable__content__row__el--2 {
  width: 30%;
}

#cartProducts .productTable__head__row__el, #cartProducts .productTable__content__row__el,
#soldProducts .productTable__head__row__el,
#soldProducts .productTable__content__row__el {
  padding: 8px 0;
}

.productPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1000;
  display: none;
}

.productPopup--active {
  display: block;
}

.productPopup__close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 20px;
  cursor: pointer;
}

.productPopup__info {
  background: #f2f2f2;
  width: 100%;
  height: 200px;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
}

.productPopup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 700px;
  width: 90vw;
  max-width: 700px;
  overflow-y: auto;
  padding: 40px;
  gap: 15px;
}

.productPopup__inner__part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.productPopup__inner__part h3,
.productPopup__inner__part p {
  margin-bottom: 0 !important;
}

.productPopup__inner__part--info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.productPopup__inner__part--info span {
  font-size: 14px;
  color: #6eaa97;
}

.productPopup__inner .inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 39px;
}

.productPopup__inner .inputBox:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.productPopup__inner .inputBox input {
  height: 100%;
}

@media (max-width: 767px) {
  .productPopup__inner {
    padding: 20px;
  }
  .productPopup__inner__part--buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .productPopup__inner__part--buttons .inputBox {
    width: 100%;
  }
  .productPopup__inner__part--buttons .btn {
    width: 100%;
  }
  .productPopup__info {
    height: 100px;
  }
}

.productTable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.productTable input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.productTable__head, .productTable__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.productTable__head__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #bbbbbb;
  gap: 10px;
  color: #6eaa97;
  font-weight: 600;
}

.productTable__head__row__el--0 {
  width: 15%;
}

.productTable__head__row__el--1 {
  width: 35%;
}

.productTable__head__row__el--2 {
  width: 20%;
}

.productTable__head__row__el--3 {
  width: 15%;
}

.productTable__head__row__el--4 {
  width: 15%;
}

.productTable__content p {
  margin-top: 20px;
}

.productTable__content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #bbbbbb;
  gap: 10px;
}

.productTable__content__row__el.btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
}

.productTable__content__row__el--0 {
  width: 15%;
}

.productTable__content__row__el--1 {
  width: 35%;
}

.productTable__content__row__el--2 {
  width: 20%;
}

.productTable__content__row__el--3 {
  width: 15%;
}

.productTable__content__row__el--4 {
  width: 15%;
}

.productTable__head__row__el, .productTable__content__row__el {
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.productTable__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
  display: none;
}

.loader--active {
  display: block;
}

.loader::before, .loader::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #fff;
  -webkit-animation: prixClipFix 2s linear infinite;
          animation: prixClipFix 2s linear infinite;
}

.loader::after {
  border-color: #f7c166;
  animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
  inset: 6px;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes prixClipFix {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
            clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

@keyframes prixClipFix {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
            clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

.woocommerce-page.woocommerce-checkout form #order_review td.product-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.woocommerce-page.woocommerce-checkout form #order_review td.product-name * {
  width: 100%;
}

.new-header {
  padding: 1em 0;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 999;
  margin-left: 120px;
  margin-right: 120px;
  padding-left: 35px;
  padding-right: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.new-header__logo {
  position: relative;
}

.new-header__shop-name {
  color: #003764;
  font-family: Poppins;
  font-size: 14.717px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.943px;
  text-transform: uppercase;
  position: absolute;
  bottom: -30px;
  left: 6px;
}

.new-header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  margin: 0;
  padding: 0;
}

.new-header nav ul li {
  list-style: none;
}

.new-header nav ul li a {
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 4px 8px;
  color: #05386a !important;
  font-weight: 500;
  font-size: 1.1333333333333rem;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.new-header nav ul li a:before {
  content: "";
  top: auto;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(18, 77, 135, 0.75);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.new-header nav ul li a:hover {
  color: rgba(18, 77, 135, 0.75) !important;
}

.new-header nav ul li a:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.new-header nav ul li.current_page_item a {
  color: rgba(18, 77, 135, 0.75) !important;
}

.new-header nav ul li.current_page_item a:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 1199px) {
  .new-header {
    margin-left: 56px;
    margin-right: 56px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .new-header {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-top: 30px;
}

body .woocommerce-MyAccount-navigation-link.is-active a {
  background-color: #6daa97;
  color: white;
}

body .woocommerce-MyAccount-navigation-link a {
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

body .woocommerce-MyAccount-navigation-link a:hover {
  background-color: #6daa97;
  color: white !important;
}

.elementor-heading-title.elementor-size-default {
  text-align: center;
  font-weight: 400;
  padding: 10px 0 20px;
}

.heading-shop-name span {
  color: #003764;
  font-weight: 600;
}

.p-home {
  width: 100%;
}

.p-home__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  position: relative;
  width: 100%;
  padding: 40px 60px;
  background-color: #6cab98;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-home__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-home__logo img {
  width: 384px;
  max-width: 100%;
}

.p-home__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.p-home__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 40px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.p-home__column {
  width: 50%;
  aspect-ratio: 1;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}

.p-home__column img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home__column--1 .p-home__column-wrap {
  background-color: #e1d9a8;
}

.p-home__column--1 .p-home__subtitle {
  visibility: hidden;
}

.p-home__column--1 img {
  -o-object-position: -120px 130px;
     object-position: -120px 130px;
}

@media (max-width: 767px) {
  .p-home__column--1 img {
    -o-object-position: -75px 50px;
       object-position: -75px 50px;
  }
}

.p-home__column--2 .p-home__column-wrap {
  background-color: #a1bcd3;
}

.p-home__column--2 img {
  -o-object-position: 0 65px;
     object-position: 0 65px;
}

.p-home__column-wrap {
  height: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}

.p-home__subtitle {
  color: #003764;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.p-home__title {
  color: #003764;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

.p-home__columns-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}

.p-home__copyright p {
  color: #003764;
  text-align: center;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
  margin: 0;
}

@media (max-width: 767px) {
  .p-home {
    height: auto;
  }
  .p-home__logo img {
    width: 300px;
  }
  .p-home__container {
    padding: 24px;
    height: auto;
  }
  .p-home__header {
    row-gap: 24px;
  }
  .p-home__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 24px;
  }
  .p-home__column {
    width: 100%;
    max-width: 60%;
  }
  .p-home__title {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .p-home__subtitle {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .p-home__column {
    width: 100%;
    max-width: 90%;
  }
}

body.home {
  background-color: #6cab98;
}

body.page-parent .shop-taxonomy-term {
  display: none !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ecf5e1;
  z-index: 9999999;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.footer {
  background-color: var(--footer-background);
  padding: 80px 56px 20px 56px;
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 20px 20px 20px;
  }
}

.footer .footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
}

.footer .footer-block {
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer .footer-block__header {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--footer-primary);
}

.footer .footer-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 15px;
}

.footer .footer-block__list a {
  font-size: 14px;
  color: var(--footer-secondary);
}

.footer .footer-block__list a:hover {
  opacity: 0.8;
}

.footer .footer-block__content {
  color: var(--footer-secondary);
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
}

.footer .footer-block__content a {
  color: var(--footer-secondary);
}

.footer .footer-block__content a:hover {
  opacity: 0.8;
}

.footer .footer-block__link {
  font-size: 14px;
  color: var(--footer-secondary);
  text-decoration: none;
}

.footer .footer-block__link:hover {
  opacity: 0.8;
}

.footer .footer-block__text {
  color: var(--footer-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .footer .footer-block--1 {
    width: 50%;
  }
  .footer .footer-block--2 {
    width: 50%;
  }
  .footer .footer-block--3 {
    display: none;
  }
  .footer .footer-block--4 {
    width: 100%;
    text-align: center;
  }
}

.footer .footer-bottom-wrap {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer-bottom-wrap__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer-bottom-wrap__logotext {
  color: var(--footer-logo);
  font-family: Poppins;
  font-size: 14.717px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.943px;
  text-transform: uppercase;
  margin-top: 10px;
}

.footer .footer-bottom-wrap__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.footer .footer-bottom-wrap__social a {
  color: var(--footer-primary);
  text-decoration: none;
  font-size: 30px;
}

.footer .footer-bottom-wrap__social a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .footer .footer-bottom-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer-bottom-wrap__left {
    width: 100%;
    text-align: center;
  }
  .footer .footer-bottom-wrap__right {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer-bottom-wrap__social {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
            column-gap: 20px;
    margin-top: 20px;
  }
}

.footer .footer-bottom-wrap__copyright {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-top: 1px solid var(--footer-copyright-line);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .footer-bottom-wrap__copyright p {
  font-size: 10px;
  font-weight: 400;
  margin: 0;
  color: var(--footer-secondary);
}

.footer .footer-bottom-wrap__copyright a {
  color: var(--footer-secondary);
}

.footer--krk {
  /* Wszystkie kolory występujące w całym bloku .footer */
  --footer-background: #f8f8f8;
  --footer-primary: #6da999;
  --footer-secondary: #003566;
  --footer-logo: #003764;
  --footer-white: white;
  --footer-copyright-line: white;
  --footer-newsletter-background: red;
}

.footer--sms {
  /* Wszystkie kolory występujące w całym bloku .footer */
  --footer-background: #f8f8f8;
  --footer-primary: #6da999;
  --footer-secondary: #003566;
  --footer-logo: #003764;
  --footer-white: white;
  --footer-copyright-line: white;
  --footer-newsletter-background: red;
}

form.cart {
  display: block !important;
}

@media (max-width: 767px) {
  #sendProductsToCart {
    margin-top: 10px;
  }
}

.home-bar {
  padding: 6px 0;
  background-color: #e0dba4;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 155px;
  padding-right: 155px;
}

.home-bar a {
  font-size: 12px;
  color: #05386a !important;
  font-weight: 700;
}

.home-bar a:hover {
  opacity: 0.8;
}

.home-bar--krakowska {
  background-color: #a1bbd4;
}

@media (max-width: 1199px) {
  .home-bar {
    padding-left: 71px;
    padding-right: 71px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .home-bar {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */