@media (min-width: 990px) {
  .MobileNavigation__Container,
  #MobileNavigation__SubItems--Container {
    display: none !important;
  }
}

.av-tab-section-tab-title-container.avia-tab-title-padding-default {
  min-width: auto !important;
  left: 0 !important;
}

.wpmc-tab-item {
  cursor: pointer;
}
.wpmc-tab-item > * {
  pointer-events: none;
}


/* ======================================================================================================================================================
# Navigation
====================================================================================================================================================== */

.MobileNavigation__Container {
    position: fixed; display: inline-flex; right: 0; bottom: 0; left: 0; margin: 20px 0 0 0; height: 70px;
    background-color: #ffffff; color: white; justify-content: space-evenly; align-items: center; border-radius: 0px;
    box-shadow: 0px -4px 16px rgba(17 17 26 / 10%), 0px -8px 24px rgba(17 17 26 / 10%), 0px -16px 56px rgba(17 17 26 / 10%);
    z-index: 504;
}

.MobileNavigation__Item {
    position: relative;
    display: flex;
    flex-flow: column;
    text-align: center;
    width: 100px;
    height: 75px;
    cursor: pointer;
    justify-content: center;
}

.MobileNavigation__Item.shopping-cart {
    position: absolute;
    top: -21px;
    width: 42px;
    height: 42px;
    background-color: #ffbb18;
    border-radius: 50%;
}

.MobileNavigation__Item.shopping-cart::before {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 51px;
    background-color: white;
    content: "";
    z-index: -1;
    left: -5px;
    top: -5px;
}

.MobileNavigation__Item:nth-child(4) {
    margin-left: 20px;
}

.MobileNavigation__Item:nth-child(2) {
    margin-right: 20px;
}

.NavigationItem--margin:not(.shopping-cart) {
  margin-top: 0px;
  /* old - margin-top: 10px; */
}

.MobileNavigation__Item:not(.shopping-cart):hover {
    text-decoration: none;
    position: relative;
}

.MobileNavigation__Item:not(.shopping-cart):hover .MobileNavigation-Icon,
.MobileNavigation__Item:not(.shopping-cart).MobileNavigation-Item__Active .MobileNavigation-Icon {
    fill: #ffbb18;
    transition: color 0.15s ease-out;
}

.MobileNavigation__Item:not(.shopping-cart):hover::before,
.MobileNavigation__Item:not(.shopping-cart).MobileNavigation-Item__Active::before {
    position: absolute;
    content: "";
    bottom: calc(50% - 25px);
    left: calc(50% - 15px);
    width: 30px;
    height: 3px;
    background: #ffbb18;
    border-radius: 2px 2px 0px 0px;
}

.MobileNavigation__Item:nth-child(2) .MobileNavigation-Icon {
    transform: rotate(0deg);
    transition: transform 0.5s ease-out;
}

.MobileNavigation__Item:nth-child(2).MobileNavigation-Item__Active .MobileNavigation-Icon {
    transform: rotate(45deg);
    transition: transform 0.5s ease-out;
}

.MobileNavigation-Cart {
    position: absolute; top: -30px; left: calc(50% + 8px); width: 20px; height: 20px; line-height: 20px; 
	background: red; font-size: 12px; text-align: center; vertical-align: middle; border-radius: 10px; z-index: 1;
}

.MobileNavigation-Icon {
    width: 18px; height: 18px;
	/* old - width: 20px; height: 20px; */
    margin: 0 auto;
    fill: white;
}

.MobileNavigation__Item.shopping-cart .MobileNavigation-Icon {
    fill: #1e1c1f;
}

.av-burger-overlay-active .MobileNavigation__Container,
.av-burger-overlay-active .Submenu-Wrapper {
    display: none;
}

.MobileNavigation__Item--isWishlistCounter {
    position: absolute;
    top: 8px;
    left: calc(50% + 8px);
    text-align: center;
    line-height: 20px;
    background: #ffbb18;
    width: 20px;
    height: 20px;
    color: black;
    border-radius: 10px;
}

.MobileNavigation-Label {
    margin: 4px 0 0 0; line-height: 14px; font-size: 10px; color: #2a2a2a;
    /* Wyłączenie tekstu pod kategoriami - display: none; */
}

.MobileNavigation__Item.shopping-cart .MobileNavigation-Label {
    display: none;
}

.MobileNavigation-Item__Active .MobileNavigation-Label {
    color: #2a2a2a;
    font-weight: 600;
}

/* Normal icon */
.MobileNavigation__Item:not(.shopping-cart) .MobileNavigation-Icon img {}


/* Active Icon */
.MobileNavigation-Item__Active:not(.shopping-cart) .MobileNavigation-Icon img {filter: invert(86%) sepia(28%) saturate(3230%) hue-rotate(341deg) brightness(99%) contrast(103%);}

.MobileNavigation__label {
    font-size: 9px;
}




/* ======================================================================================================================================================
# Submenu
====================================================================================================================================================== */



#MobileNavigation__SubItems--Container {
	position: fixed; left: 0; bottom: 90px; right: 0; flex-flow: column; overflow-y: scroll; 
	height: fit-content; max-height: 0; background: white; z-index: 499; transition: max-height 0.15s ease-out, height 0.15s ease-out;
  
}

#MobileNavigation-SubItems__Background {
  position: fixed;
  display: none;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 503;
  opacity: 0;
  transition: opacity 0.15s ease-out;
}

.MobileNavigation__Subitem {
  display: flex;
  flex-flow: row;
  width: 100%;
  padding: 3px 0;
  padding-left: 0.8rem;
  height: 38px;
  cursor: pointer;
  color: black;
  font-size: 14px;
  font-weight: 600;
  border: solid 1px white;
  border-bottom: solid 1px #f8f8f8;
}

.MobileNavigation__Subitem:hover {
  border: solid 1px #e1e1e1;
  border-radius: 5px;
  text-decoration: none;
}

/* Submenu Icon */
.MobileNavigation__Subitem-Icon {
	position: relative;
	margin: auto;
	margin-right: 1rem;
	width: 24px;
	height: 24px;
	fill: #1e1c1f;
}


.MobileNavigation__Subitem > p {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0;
}

.MobileNavigation__Subitem--isParent {
  font-size: 20px;
  margin-right: 1rem;
  margin-left: auto;
}

.MobileNavigation__Subitem > p > sup {margin-top: -2px; margin-right: 5px;}

#MobileNavigation__SubItems--ListWrapper {
  position: relative;
  margin: 0 4%;
  padding-top: 50px;
  margin-bottom: 50px;
  background: white;
  z-index: -1;
}

/* Line Under Categories */
#MobileNavigation__SubItems--ListWrapper::after {
  position: absolute;
  content: "";
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #fff;
}

.Submenu-Wrapper {
	position: fixed; left: 0px; bottom: 0; width: 100vw; height: 100%; max-height: 0; background-color: white; z-index: 503; transition: max-height 0.15s ease-out, height 0.15s ease-out;
}

.mobileNavigation--hidden {
  display: none;
}

.MobileNavigation__Subitem.show-more > p {color: #a0cbc1 !important;}

.Submenu-Wrapper .show-more > .MobileNavigation__Subitem-Icon:before {
	content:'';
	position: absolute;
	width: 24px;
	height: 24px;	
	background: url(../svg/arrow-right.svg) no-repeat center center;
}



/* ======================================================================================================================================================
# Label
====================================================================================================================================================== */


#MobileNavigation__Label {
    position: fixed; display: flex; margin-left: 4%; padding: 0 2.2%; width: 92%; height: 42px; background: #ffbb18;
    font-weight: 600; color: #ffffff; letter-spacing: 0.5px; text-align: center; justify-content: space-between; align-items: center; border-radius: 5px;
}

#MobileNavigation__Label > a.label__name {font-weight: 600; color: #2a2a2a;}

.Label__Button {
    display: flex; padding: 0; width: 28px; height: 28px; background: #1f1f1f; cursor: pointer; color: white; align-items: center; border: none; border-radius: 3px;
}

.Label__Button > svg {
    width: 20px;
    height: 20px;
    fill: white;
    margin: auto;
}

.Label__Button > span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 16px;
}

#MobileNavigation__Label--return {
    visibility: hidden;
}
