.mobile-bottom-menu-wrap {
  display: none;
  width: 100%;
  height: 48px;
  position: fixed;
  z-index: 90;
  bottom: 0;
}

#mobile-bottom-menu {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  list-style: none;
}

#mobile-bottom-menu ul,
#mobile-bottom-menu li {
  list-style-type: none;
  list-style: none;
}

#mobile-bottom-menu > li {
  position: relative;
  width: 50%;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--black);
}

#mobile-bottom-menu > li:first-child,
#mobile-bottom-menu > li:first-child > .sub-menu {
  background-color: var(--accent);
}

#mobile-bottom-menu > li:first-child > .sub-menu a {
  color: var(--black);
}

#mobile-bottom-menu > li:last-child {
  background-color: var(--light-grey);
}

#mobile-bottom-menu > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#mobile-bottom-menu > li > a,
#mobile-bottom-menu > li > a:hover {
  color: inherit;
  text-decoration: none;
}

#mobile-bottom-menu > li .sub-menu {
  display: none;
  width: 100%;
  margin: 0;
  padding: 20px 16px;
  position: fixed;
  z-index: 90;
  bottom: 48px;
  left: 0;
  background-color: var(--light-grey);
}

#mobile-bottom-menu .sub-menu a {
  font-size: 14px;
  font-family: var(--font-reg);
  font-weight: 400;
  text-transform: initial;
  color: var(--main-text-color);
  margin-bottom: 10px;
}

#mobile-bottom-menu > li.shown .sub-menu {
  display: block;
}

@media screen and (max-width: 767px) {
  .mobile-bottom-menu-wrap {
    display: block;
  }
}