.bottom-nav {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
  padding: 0 0 20px 0;
  z-index: 100;

  width: 75%;
  max-width: 768px;
}

.bottom-nav__list {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 64px;
  align-items: center;
  gap: 5px;
  flex: 1;
  justify-content: space-between;
  padding: 0.7%;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3),
    inset 0 0 4px 2px rgba(255, 255, 255, 0.045);
  border-radius: 200px;
  z-index: 100;
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  list-style: none;
  border-radius: 200px;
  padding: 5px 5px;
  cursor: pointer;
  /* transform: scale(1); */

  transition: all 0.3s ease;
  background-color: transparent;
}

.bottom-nav__item.selected {
  position: relative;
  background-color: rgba(255, 255, 255, 0.179);
  /* transform: scale(1.05); */
}

.bottom-nav__link {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  padding: 0;
  gap: 3px;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.icon {
  filter: invert(100%);
}

.nav-icon {
  height: 80%;
}

.bottom-nav__name {
  font-size: 10px;
  font-weight: 600;
}
