@charset "UTF-8";
/*

.element {
  // Domyślnie mobile-first
  @include media('up', 'md') { ... }

  // Tylko tablet
  @include media('only', 'md') { ... }

  // Mobile
  @include media('down', 'sm') { ... }
}
*/
body {
  padding-top: 140px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  --height: -40px;
}
.header.scrolled {
  position: fixed;
  top: -200px;
}
.header.fixed {
  top: var(--height);
  transition: 300ms ease-in-out;
}
.header .header__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing--md);
  padding-right: var(--spacing--md);
  width: 100%;
  box-sizing: border-box;
}
.header .header__top {
  background: #1C1B1F;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}
.header .header__top a {
  color: #fff;
  text-decoration: none;
  transition: 300ms ease-in-out;
}
.header .header__top a:hover, .header .header__top a:focus {
  color: #FF6845;
  text-decoration: underline;
}
.header .header__top .header__contact {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.header .header__top .header__contact .header__contact-link {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--small);
}
.header .header__top .header__contact .header__contact-link:hover svg path, .header .header__top .header__contact .header__contact-link:focus svg path {
  fill: #FF6845;
}
.header .header__main {
  background: #F6F6F6;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 300ms ease-in-out;
}
.header .header__main .header__logo {
  margin-right: 1rem;
}
@media (min-width: 1200px) {
  .header .header__main .header__logo {
    margin-right: auto;
  }
}
.header .header__main .header__search {
  margin-left: 0;
  width: auto;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .header .header__main .header__search {
    max-width: 350px;
    width: 100%;
  }
}
.header .header__main .header__right {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.header .header__main .header__right .header__user {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: 300ms ease-in-out;
  border-radius: 5px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}
.header .header__main .header__right .header__user:visited {
  color: var(--color-text);
}
.header .header__main .header__right .header__user:hover, .header .header__main .header__right .header__user:focus {
  background: #EBEBEB;
  text-decoration: underline;
}
.header .header__main .header__right .header__cart {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: 300ms ease-in-out;
  background: #EBEBEB;
  border-radius: 5px;
  text-decoration: none;
  color: var(--color-text);
}
.header .header__main .header__right .header__cart .header__cart-icon {
  position: relative;
}
.header .header__main .header__right .header__cart .header__cart-icon .header__cart-count {
  position: absolute;
  bottom: -4px;
  right: -8px;
  line-height: 1;
  font-size: 0.5em;
  font-weight: 600;
  color: #fff;
  background: #FF6845;
  padding: 6px 6px;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
}
.header .header__main .header__right .header__cart .header__cart-price {
  font-weight: 500;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
}
.header .header__main .header__right .header__cart:visited .header__cart-price {
  color: var(--color-text);
}
.header .header__main .header__right .header__cart:hover, .header .header__main .header__right .header__cart:focus {
  background: #d3d3d3;
  text-decoration: underline;
}

.navigation {
  position: relative;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing--md);
  padding-right: var(--spacing--md);
  width: 100%;
  box-sizing: border-box;
}
.navigation .navigation__menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  gap: 30px;
}
@media screen and (max-width: 700px) {
  .navigation .navigation__menu {
    gap: 10px;
  }
}
.navigation .navigation__menu > .menu-item > a {
  display: block;
  padding: 15px 0;
  font-size: var(--fz-16);
  line-height: 1;
  font-weight: 700;
  color: var(--default-font-color);
  position: relative;
  transition: 300ms;
}
.navigation .navigation__menu > .menu-item > a:hover, .navigation .navigation__menu > .menu-item > a:focus {
  color: #182AB5;
  text-decoration: underline;
}
.navigation .navigation__menu > .menu-item > a:hover svg path, .navigation .navigation__menu > .menu-item > a:focus svg path {
  fill: #182AB5;
}
.navigation .navigation__menu > .menu-item:hover > a {
  color: #182AB5;
  text-decoration: underline;
}
.navigation .navigation__menu > .menu-item:hover > a svg path {
  fill: #182AB5;
}
.navigation .navigation__menu > .menu-item.menu-item--right {
  margin-left: auto;
}
.navigation .navigation__menu > .menu-item.current-menu-item > a {
  text-decoration: underline;
}
.navigation .navigation__menu > .menu-item.menu-item-has-children {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.navigation .navigation__menu > .menu-item.menu-item-has-children > a {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.navigation .navigation__menu > .menu-item.menu-item-has-children > .mega-menu {
  display: none;
}
.navigation .navigation__menu > .menu-item.menu-item-has-children:hover > .mega-menu, .navigation .navigation__menu > .menu-item.menu-item-has-children:focus > .mega-menu, .navigation .navigation__menu > .menu-item.menu-item-has-children.open-item > .mega-menu {
  display: flex;
}

.navigation .mega-menu {
  position: absolute;
  z-index: 10;
  width: 80%;
  background: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  top: 100%;
  left: 30px;
  box-shadow: 0 4px 44px -16px rgba(0, 0, 0, 0.3490196078);
  display: flex;
  flex-direction: row;
  max-height: 450px;
  overflow: hidden;
  min-height: 380px;
}
.navigation .mega-menu .mega-menu__menu {
  list-style-type: none;
  padding: var(--spacing--xs) 0 var(--spacing--xs) var(--spacing--xs);
  display: flex;
  flex-direction: column;
  background: #182AB5;
  overflow-y: auto;
  min-width: 20%;
  max-width: 20%;
  flex-grow: 0;
  flex-shrink: 0;
  box-shadow: inset -9px 0 24px -19px rgb(66, 68, 90);
}
.navigation .mega-menu .mega-menu__menu > .menu-item > a {
  display: flex;
  flex-direction: row;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px 30px 10px 20px;
  font-size: var(--fz-14);
  color: #fff;
  line-height: 1;
  font-weight: 700;
  position: relative;
}
.navigation .mega-menu .mega-menu__menu > .menu-item:hover > a {
  color: #101010;
  background: #fff;
  text-decoration: underline;
}
.navigation .mega-menu .mega-menu__menu > .menu-item .mega-menu__container {
  position: absolute;
  width: 80%;
  right: 0;
  top: 0;
  display: none;
  flex-direction: row;
  height: 100%;
  background: #fff;
}
.navigation .mega-menu .mega-menu__menu > .menu-item .mega-menu__container .mega-menu__sub-menu {
  flex-grow: 1;
  padding: var(--spacing--xs) var(--spacing--md);
  max-height: 100%;
  overflow-y: auto;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 20px;
       column-gap: 20px;
  -moz-column-fill: auto;
       column-fill: auto;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
@media screen and (max-width: 1000px) {
  .navigation .mega-menu .mega-menu__menu > .menu-item .mega-menu__container .mega-menu__sub-menu {
    -moz-columns: 1;
         columns: 1;
  }
}
.navigation .mega-menu .mega-menu__menu > .menu-item .mega-menu__container .mega-menu__sub-menu .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  flex-direction: column;
}
.navigation .mega-menu .mega-menu__menu > .menu-item .mega-menu__container .mega-menu__sub-menu .sub-menu > .menu-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: flex;
}
.navigation .mega-menu .mega-menu__menu > .menu-item .mega-menu__container .mega-menu__sub-menu .sub-menu > .menu-item > a {
  font-size: var(--fz-14);
  line-height: 1.3;
  font-weight: 600;
  padding: 8px 0;
}
.navigation .mega-menu .mega-menu__menu > .menu-item .mega-menu__container .mega-menu__product {
  width: 20%;
  border-left: 1px solid rgba(43, 48, 48, 0.2);
  padding: 20px;
  flex-shrink: 0;
  position: relative;
}
.navigation .mega-menu .mega-menu__menu > .menu-item:hover .mega-menu__container {
  display: flex;
}
.navigation .mega-menu .mega-menu__menu > .menu-item.active > a {
  color: #101010;
  background: #fff;
  text-decoration: underline;
}
.navigation .mega-menu .mega-menu__menu > .menu-item.active:first-child .mega-menu__container {
  display: flex;
}

.footer {
  margin-top: 2rem;
}
.footer .footer__nav {
  background: #1C1B1F;
  padding: 50px 100px;
  position: relative;
  border-radius: 20px;
  color: #fff;
  display: grid;
  flex-direction: row;
  gap: var(--spacing--lg);
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .footer .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .footer .footer__nav {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer .footer__nav {
  max-width: var(--wp--style--global--wide-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(var(--spacing--md), (min(100vw - var(--spacing--md) * 2, var(--wp--style--global--wide-size)) - var(--wp--style--global--content-size)) / 2 + var(--spacing--md));
  padding-right: max(var(--spacing--md), (min(100vw - var(--spacing--md) * 2, var(--wp--style--global--wide-size)) - var(--wp--style--global--content-size)) / 2 + var(--spacing--md));
  width: calc(100% - var(--spacing--md) * 2);
  box-sizing: border-box;
}
@media (max-width: 990.98px) {
  .footer .footer__nav {
    flex-wrap: wrap;
  }
}
.footer .footer__nav a {
  color: #fff;
  text-decoration: none;
  transition: 300ms ease-in-out;
}
.footer .footer__nav a:visited {
  color: #fff;
}
.footer .footer__nav a:hover, .footer .footer__nav a:focus {
  color: #FF6845;
  text-decoration: underline;
}
.footer .footer__nav .footer__title {
  font-size: var(--h-fz--md);
  font-family: var(--wp--preset--font-family--lexend-deca);
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}
.footer .footer__nav .footer__title:first-child {
  margin-top: 0;
}
.footer .footer__nav .menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
}
.footer .footer__nav > *:last-child {
  min-width: 350px;
}
@media (max-width: 990.98px) {
  .footer .footer__nav > * {
    min-width: calc(50% - var(--spacing--lg) / 2);
  }
  .footer .footer__nav > *:last-child {
    min-width: calc(50% - var(--spacing--lg) / 2);
  }
}
.footer .footer__copy {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: var(--fz-14);
  font-weight: 600;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing--md);
  padding-right: var(--spacing--md);
  width: 100%;
  box-sizing: border-box;
}
.footer .footer__copy .footer__copy-left {
  margin-right: auto;
}
.footer .footer__copy .footer__copy-left .menu {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer__copy .footer__copy-right {
  margin-left: auto;
}/*# sourceMappingURL=netivo-woocommerce-desktop.css.map */